* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 80%;
    margin: 0 auto;
    scroll-behavior: smooth;
}

@media (max-width: 968px) {
    body {
        max-width: 100%;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 50px;
}

.hero-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 40px;
}

.hero-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-logo-image {
    height: 60px;
    object-fit: contain;
}

.hero-logo-text {
    font-size: 1.2rem;
    line-height: 1.4;
    color: #373B43;
    font-weight: 700;
}

.hero-text-box {
    background: rgba(255, 255, 255, 0.5);
    padding: 30px 40px;
    max-width: 500px;
    align-self: flex-start;
    margin-bottom: 80px;
    margin-left: 50px;
}

.hero-text-box h1 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
    line-height: 1.6;
}

.hero-text-box p {
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.6;
    margin: 0;
    font-weight: 700;
}

.hero-text-box .hero-subtitle {
    font-size: 1rem;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu > li {
    margin: 0;
}

.nav-link {
    color: #373B43;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 20px;
    transition: all 0.3s ease;
    display: block;
    white-space: nowrap;
}

.nav-link:hover {
    color: #2c5530;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
    z-index: 1000;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #373B43;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-dropdown-toggle:hover {
    color: #2c5530;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 200px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu li {
    margin: 0;
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #373B43;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
    background: #f5f5f5;
    color: #2c5530;
    padding-left: 24px;
}

.nav-dropdown-menu li:first-child a {
    border-radius: 8px 8px 0 0;
}

.nav-dropdown-menu li:last-child a {
    border-radius: 0 0 8px 8px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Tracking Input Section */
.tracking-section {
    background: rgba(20, 40, 70, 0.95);
    padding: 40px;
    margin: -80px auto 0;
    max-width: 900px;
    position: relative;
    z-index: 10;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tracking-section h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.tracking-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.tracking-form {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.tracking-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.tracking-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.tracking-form input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.tracking-form button {
    padding: 15px 40px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.tracking-form button:hover {
    background: #c0392b;
}

.alert {
    padding: 12px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.alert-error {
    background: rgba(231, 76, 60, 0.2);
    border: 1px solid rgba(231, 76, 60, 0.5);
    color: #ff6b6b;
}

.alert-success {
    background: rgba(46, 204, 113, 0.2);
    border: 1px solid rgba(46, 204, 113, 0.5);
    color: #2ecc71;
}

.ship-image {
    text-align: right;
    margin-top: 20px;
}

.ship-image img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Gallery Section */
.gallery-section {
    background: #f5f5f5;
    padding: 0;
    margin: 0;
}

.gallery-content {
    max-width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 0;
    height: 300px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item-with-text {
    position: relative;
}

.gallery-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    background: rgba(0, 30, 60, 0.4);
    color: white;
}

.gallery-text-overlay h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.gallery-text-overlay p {
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 90%;
}

/* Tracking Title */
.tracking-title {
    cursor: pointer;
    transition: opacity 0.3s;
}

.tracking-title:hover {
    opacity: 0.9;
}

/* Tracking Dropdown */
.tracking-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    width: 100%;
}

.tracking-dropdown.active {
    max-height: 500px;
}

.tracking-dropdown-content {
    background: white;
    border: 2px solid #ddd;
    border-radius: 0;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    margin: 0 auto;
}

.tracking-hint {
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-shadow: none;
    line-height: 1.6;
}

.tracking-input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: stretch;
}

.input-label {
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 0;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
    min-width: 120px;
    justify-content: center;
    height: 80px;
}

.tracking-textarea {
    flex: 1;
    padding: 28px 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 1rem;
    resize: vertical;
    font-family: inherit;
    height: 80px;
    line-height: 1.5;
    box-sizing: border-box;
}

.tracking-textarea:focus {
    outline: none;
    border-color: #3498db;
}

.tracking-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.tracking-reset-btn {
    background: white;
    color: #333;
    border: 1px solid #ddd;
    padding: 12px 40px;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.tracking-reset-btn:hover {
    background: #f5f5f5;
    border-color: #999;
}

.tracking-submit-btn {
    background: #2c5530;
    color: white;
    border: none;
    padding: 12px 60px;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.tracking-submit-btn:hover {
    background: #1e3d21;
}

/* Tracking Results Section */
.tracking-results {
    width: 100%;
    margin-top: 0;
}

.tracking-results-content {
    background: white;
    border: none;
    border-top: 2px solid #ddd;
    padding: 30px;
}

.loading-spinner {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 1.1rem;
}

.result-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.result-item:last-child {
    border-bottom: none;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.result-tracking-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
}

.result-status {
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.result-status.success {
    background: #d4edda;
    color: #155724;
}

.result-status.error {
    background: #f8d7da;
    color: #721c24;
}

.result-body {
    background: #f9f9f9;
    padding: 20px;
    margin-top: 15px;
}

.result-timeline {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-item {
    padding: 15px;
    border-left: 3px solid #3498db;
    margin-left: 10px;
    margin-bottom: 15px;
    background: white;
}

.timeline-date {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.timeline-description {
    color: #555;
    line-height: 1.6;
}

.result-error {
    color: #721c24;
    background: #f8d7da;
    padding: 15px;
    border-radius: 5px;
}

/* Additional Image Section */
.additional-image-section {
    background: #f5f5f5;
    padding: 0;
    margin: 0;
    position: relative;
}

.additional-image-section img {
    width: 100%;
    height: auto;
    display: block;
}

.company-intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 60px;
}

.company-intro-content {
    background: rgba(255, 255, 255, 0.5);
    padding: 40px 50px;
    max-width: 600px;
    border-radius: 8px;
}

.company-intro-content h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.company-intro-content p {
    color: #333;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.8;
    text-align: justify;
}

/* Info Section */
.info-section {
    background: white;
    padding: 80px 20px;
}

.info-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.info-content h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 20px;
}

.info-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Section */
.footer-section {
    background: #1a1a1f;
    color: white;
    padding: 60px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.footer-left {
    display: flex;
    gap: 40px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.qr-code {
    width: 180px;
    height: 180px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.qr-code svg {
    width: 160px;
    height: 160px;
}

.logo-text {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-text h3 {
    font-size: 3rem;
    font-weight: 600;
    color: white;
}

.footer-divider {
    width: 2px;
    height: 200px;
    background: white;
    flex-shrink: 0;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex: 1;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-item .icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-item div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item .label {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

.info-item .value {
    color: white;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-section {
        height: 40vh;
        min-height: 300px;
    }

    .hero-overlay {
        padding: 20px 25px;
    }

    .hero-top-bar {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .main-nav {
        margin-left: 0;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 0;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 8px 14px;
    }

    .nav-dropdown-toggle {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .nav-dropdown-menu {
        min-width: 180px;
    }

    .nav-dropdown-menu a {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .hero-logo-image {
        width: 45px;
        height: 45px;
    }

    .hero-logo-text {
        font-size: 0.75rem;
    }

    .hero-text-box {
        padding: 20px 25px;
        max-width: 90%;
        margin-bottom: 40px;
        margin-left: 25px;
    }

    .hero-text-box h1 {
        font-size: 1.1rem;
    }

    .hero-text-box p {
        font-size: 0.85rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .tracking-section {
        margin: -60px 20px 0;
        padding: 30px 20px;
    }

    .tracking-form {
        flex-direction: column;
    }

    .ship-image {
        text-align: center;
    }

    .ship-image img {
        max-width: 250px;
    }

    .gallery-content {
        grid-template-columns: 1fr;
        gap: 0;
        height: auto;
    }

    .gallery-item {
        height: 200px;
    }

    .gallery-text-overlay {
        padding: 20px;
    }

    .gallery-text-overlay h2 {
        font-size: 1.8rem;
    }

    .gallery-text-overlay p {
        font-size: 0.95rem;
    }

    .tracking-input-group {
        flex-direction: column;
        gap: 10px;
    }

    .input-label {
        min-width: auto;
        height: auto;
        padding: 10px 15px;
    }

    .tracking-textarea {
        height: 100px;
    }

    .tracking-actions {
        flex-direction: column;
        gap: 10px;
    }

    .tracking-reset-btn,
    .tracking-submit-btn {
        width: 100%;
        padding: 15px 20px;
    }

    .company-intro-overlay {
        padding: 20px;
        justify-content: center;
    }

    .company-intro-content {
        padding: 20px 25px;
        max-width: 100%;
    }

    .company-intro-content h2 {
        font-size: 1.4rem;
    }

    .company-intro-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .footer-section {
        padding: 40px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-divider {
        width: 100%;
        height: 2px;
    }

    .footer-left {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .qr-code {
        width: 150px;
        height: 150px;
    }

    .logo-text {
        width: 150px;
        height: 150px;
    }

    .logo-text h3 {
        font-size: 2.5rem;
    }

    .footer-info {
        width: 100%;
    }

    .info-item {
        flex-direction: row;
        gap: 10px;
    }

    .info-item div {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .tracking-result-card {
        position: relative;
    }

    .tracking-result-header {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        padding-right: 50px;
        position: relative;
    }

    .header-item {
        display: inline-block;
        vertical-align: top;
        white-space: normal;
        min-width: 150px;
        margin-right: 15px;
        padding-right: 0;
    }

    .collapse-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 10;
        background: #f8f9fa;
        pointer-events: auto;
    }

    .info-table {
        font-size: 0.85rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }

    .info-table table {
        width: auto;
        min-width: 100%;
        table-layout: auto;
    }

    .info-table thead,
    .info-table tbody {
        display: table-row-group;
    }

    .info-table tr {
        display: table-row;
    }

    .info-table th,
    .info-table td {
        display: table-cell;
        padding: 8px 10px;
        font-size: 0.8rem;
        word-break: keep-all;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 30vh;
        min-height: 250px;
    }

    .hero-overlay {
        padding: 15px 20px;
    }

    .hero-top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .main-nav {
        margin-left: 0;
    }

    .nav-menu {
        gap: 0;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    .nav-dropdown {
        align-self: auto;
    }

    .nav-dropdown-toggle {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .nav-dropdown-menu {
        min-width: 170px;
    }

    .nav-dropdown-menu a {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .hero-logo-image {
        width: 35px;
        height: 35px;
    }

    .hero-logo-text {
        font-size: 0.65rem;
    }

    .hero-text-box {
        padding: 15px 20px;
        margin-bottom: 30px;
        margin-left: 20px;
    }

    .hero-text-box h1 {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .hero-text-box p {
        font-size: 0.75rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .tracking-section {
        padding: 20px 15px;
    }

    .tracking-section h2 {
        font-size: 1.4rem;
    }

    .tracking-dropdown-content {
        padding: 15px;
    }

    .tracking-hint {
        font-size: 0.85rem;
    }

    .gallery-text-overlay h2 {
        font-size: 1.4rem;
    }

    .gallery-text-overlay p {
        font-size: 0.85rem;
    }

    .company-intro-overlay {
        padding: 15px;
    }

    .company-intro-content {
        padding: 12px 15px;
        background: rgba(255, 255, 255, 0.7);
    }

    .company-intro-content h2 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .company-intro-content p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .qr-code {
        width: 120px;
        height: 120px;
    }

    .qr-code svg {
        width: 100px;
        height: 100px;
    }

    .logo-text {
        width: 120px;
        height: 120px;
    }

    .logo-text h3 {
        font-size: 2rem;
    }

    .info-item .icon {
        font-size: 1.2rem;
    }

    .info-item .label,
    .info-item .value {
        font-size: 0.95rem;
    }

    .tracking-result-body {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .info-table {
        width: auto;
        min-width: 100%;
        table-layout: auto;
        display: table;
    }

    .info-table thead,
    .info-table tbody {
        display: table-row-group;
    }

    .info-table tr {
        display: table-row;
    }

    .info-table th,
    .info-table td {
        display: table-cell;
        word-break: keep-all;
        white-space: nowrap;
        font-size: 0.75rem;
        padding: 6px 8px;
    }

    .tracking-results-content {
        padding: 15px;
    }

    .tracking-result-card {
        position: relative;
    }

    .tracking-result-header {
        position: relative;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        padding-right: 50px;
    }

    .header-item {
        display: inline-block;
        vertical-align: top;
        white-space: normal;
        min-width: 120px;
        margin-right: 10px;
    }

    .header-item-label {
        font-size: 0.75rem;
    }

    .header-item-value {
        font-size: 0.85rem;
    }

    .collapse-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 10;
        background: #f8f9fa;
        pointer-events: auto;
    }
}

/* New Tracking Results Styles - Based on 6.png */
.tracking-result-card {
    background: white;
    border: 1px solid #e0e0e0;
    margin-bottom: 30px;
    border-radius: 0;
}

.tracking-result-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 2fr auto;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 20px;
    gap: 20px;
    align-items: center;
}

.header-item {
    display: flex;
    flex-direction: column;
}

.header-item-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
}

.header-item-value {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.collapse-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #666;
    padding: 0 10px;
}

.tracking-result-body {
    padding: 20px;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 25px 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.section-title:first-child {
    margin-top: 0;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: white;
}

.info-table thead {
    background: #f8f9fa;
}

.info-table th {
    padding: 12px 15px;
    text-align: left;
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    border: 1px solid #e0e0e0;
}

.info-table td {
    padding: 12px 15px;
    font-size: 0.9rem;
    color: #333;
    border: 1px solid #e0e0e0;
}

.info-table tr:hover {
    background: #f8f9fa;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 0.85rem;
    display: inline-block;
}

.status-badge.received {
    background: #d4edda;
    color: #155724;
}

.status-badge.booked {
    background: #fff3cd;
    color: #856404;
}

.checkpoint-status {
    font-size: 0.85rem;
    color: #666;
}

/* Footer Bottom - ICP Registration */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}
