/* Page-specific styles for track.html */
body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header-content {
    justify-content: space-between;
}

.back-btn {
    padding: 8px 16px;
    background: #3665f3;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
}

.back-btn:hover {
    background: #2348c5;
}

.container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.tracking-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    max-width: 600px;
    width: 100%;
    padding: 40px;
}

.tracking-icon {
    text-align: center;
    font-size: 80px;
    margin-bottom: 20px;
}

.tracking-title {
    text-align: center;
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
}

.tracking-subtitle {
    text-align: center;
    font-size: 16px;
    color: #707070;
    margin-bottom: 30px;
}

.info-box {
    background: #e3f2fd;
    border-left: 4px solid #3665f3;
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.info-box p {
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

.carriers-section {
    margin-top: 30px;
}

.section-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.carrier-grid {
    display: grid;
    gap: 15px;
}

.carrier-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
    cursor: pointer;
}

.carrier-btn:hover {
    border-color: #3665f3;
    background: #f5f9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(54, 101, 243, 0.2);
}

.carrier-icon {
    font-size: 40px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 8px;
}

.carrier-info {
    flex: 1;
}

.carrier-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 4px;
}

.carrier-description {
    font-size: 13px;
    color: #707070;
}

.arrow {
    font-size: 24px;
    color: #3665f3;
}

.divider {
    margin: 30px 0;
    border: none;
    border-top: 1px solid #e0e0e0;
}

.help-section {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.help-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.help-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #3665f3;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: background 0.3s;
}

.contact-btn:hover {
    background: #2348c5;
}

@media (max-width: 768px) {
    .tracking-card {
        padding: 30px 20px;
    }

    .tracking-title {
        font-size: 24px;
    }

    .carrier-btn {
        padding: 15px;
    }

    .carrier-icon {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
}
