/*
 Theme Name:   UASN Child Theme
 Theme URI:    https://uavsnap.com
 Description:  Custom child theme for UAV Snap mission portal system
 Author:       UAV Snap Development Team
 Author URI:   https://uavsnap.com
 Template:     dt-the7
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  uasn-child
*/

/* 
 * This child theme inherits all styling from The7 parent theme.
 * Add any custom CSS below this comment.
 */

/* =================================================================
   MISSION PORTAL CUSTOM STYLES - UAV SNAP BRAND
   ================================================================= */

/* Brand Color Variables */
:root {
    --uasn-primary: #2F8EB4;
    --uasn-primary-dark: #1A5F7A;
    --uasn-accent: #F59E0B;
    --uasn-success: #10B981;
    --uasn-warning: #F59E0B;
    --uasn-danger: #EF4444;
    --uasn-dark: #1F2937;
    --uasn-light: #F9FAFB;
    --uasn-gray: #6B7280;
}

/* Mission Archive Page Styles */
.missions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.mission-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #E5E7EB;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--uasn-primary) 0%, var(--uasn-primary-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(47, 142, 180, 0.15);
    border-color: var(--uasn-primary);
}

.mission-card:hover::before {
    opacity: 1;
}

.mission-card h3 {
    margin-top: 0;
    margin-bottom: 16px;
    color: var(--uasn-dark);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.mission-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.813rem;
    font-weight: 600;
    margin: 8px 8px 8px 0;
    letter-spacing: 0.3px;
}

.mission-status.paid {
    background-color: #D1FAE5;
    color: #065F46;
}

.mission-status.partial {
    background-color: #FEF3C7;
    color: #92400E;
}

.mission-status.unpaid {
    background-color: #FEE2E2;
    color: #991B1B;
}

.mission-meta {
    color: var(--uasn-gray);
    font-size: 0.875rem;
    margin: 16px 0;
    line-height: 1.6;
}

.mission-meta p {
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mission-meta strong {
    color: var(--uasn-dark);
    font-weight: 600;
    min-width: 100px;
}

.mission-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--uasn-primary) 0%, var(--uasn-primary-dark) 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(47, 142, 180, 0.2);
}

.mission-link:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 8px rgba(47, 142, 180, 0.3);
    color: white;
}

/* Single Mission Page Styles */
.mission-header {
    background: linear-gradient(135deg, var(--uasn-primary) 0%, var(--uasn-primary-dark) 100%);
    color: white;
    padding: 60px 40px 40px 40px;
    border-radius: 0 0 20px 20px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(47, 142, 180, 0.25);
}

/* Decorative background elements */
.mission-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.mission-header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,0,0,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.mission-header h1 {
    margin: 0 0 24px 0;
    color: white;
    font-size: 2.25rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    letter-spacing: -0.5px;
}

.mission-header-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Modern floating badge design */
.mission-header-meta .mission-status,
.mission-header-meta .laanc-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.mission-header-meta .mission-status:hover,
.mission-header-meta .laanc-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* Hide project status badge - timeline shows this already */
.mission-header-meta .project-status {
    display: none;
}

/* Payment status badge colors in header */
.mission-header-meta .mission-status.paid {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    color: #065F46;
    border: 2px solid #10B981;
}

.mission-header-meta .mission-status.partial {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #92400E;
    border: 2px solid #F59E0B;
}

.mission-header-meta .mission-status.unpaid {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    color: #991B1B;
    border: 2px solid #EF4444;
}

/* Project status badge */
.mission-header-meta .project-status {
    background: rgba(255, 255, 255, 0.95);
    color: var(--uasn-primary-dark);
    border: 2px solid white;
}

/* LAANC badges in header */
.mission-header-meta .laanc-badge.approved {
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    color: #065F46;
    border: 2px solid #10B981;
}

.mission-header-meta .laanc-badge.pending {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    color: #92400E;
    border: 2px solid #F59E0B;
}

.mission-header-meta .laanc-badge.denied {
    background: linear-gradient(135deg, #FEE2E2 0%, #FECACA 100%);
    color: #991B1B;
    border: 2px solid #EF4444;
}

.mission-header-meta .laanc-badge.not-applicable {
    background: rgba(255, 255, 255, 0.95);
    color: var(--uasn-gray);
    border: 2px solid #E5E7EB;
}

/* Progress Timeline */
.mission-progress-timeline {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.mission-progress-timeline h3 {
    margin: 0 0 20px 0;
    color: var(--uasn-dark);
    font-size: 1.125rem;
    font-weight: 600;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0;
    margin: 0 20px;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 3px;
    background: #E5E7EB;
    z-index: 0;
}

.progress-line {
    position: absolute;
    top: 20px;
    left: 20px;
    height: 3px;
    background: linear-gradient(90deg, var(--uasn-primary) 0%, var(--uasn-success) 100%);
    transition: width 0.5s ease;
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
}

.progress-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 3px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--uasn-gray);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.progress-step.active .progress-step-circle {
    background: var(--uasn-primary);
    border-color: var(--uasn-primary);
    color: white;
    transform: scale(1.1);
}

.progress-step.completed .progress-step-circle {
    background: var(--uasn-success);
    border-color: var(--uasn-success);
    color: white;
}

.progress-step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--uasn-gray);
    max-width: 80px;
}

.progress-step.active .progress-step-label {
    color: var(--uasn-primary);
}

.progress-step.completed .progress-step-label {
    color: var(--uasn-success);
}

.mission-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.mission-detail-box {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.mission-detail-box:hover {
    border-color: var(--uasn-primary);
    box-shadow: 0 4px 12px rgba(47, 142, 180, 0.1);
}

.mission-detail-box h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--uasn-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mission-detail-box p {
    margin: 8px 0;
    color: var(--uasn-dark);
    font-size: 0.938rem;
    line-height: 1.5;
}

.mission-detail-box small {
    color: var(--uasn-gray);
    font-size: 0.813rem;
}

/* LAANC Badge */
.laanc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.813rem;
    font-weight: 600;
    margin-top: 8px;
}

.laanc-badge.approved {
    background: #D1FAE5;
    color: #065F46;
}

.laanc-badge.pending {
    background: #FEF3C7;
    color: #92400E;
}

.laanc-badge.not-required {
    background: #F3F4F6;
    color: var(--uasn-gray);
}

.laanc-badge.denied {
    background: #FEE2E2;
    color: #991B1B;
}

/* Pilot Contact Card */
.pilot-contact-card {
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    border: 2px solid #E5E7EB;
}

.pilot-contact-card h3 {
    color: var(--uasn-primary-dark);
}

.pilot-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.pilot-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--uasn-dark);
    font-size: 0.938rem;
}

.pilot-contact-item a {
    color: var(--uasn-primary);
    text-decoration: none;
    font-weight: 600;
}

.pilot-contact-item a:hover {
    text-decoration: underline;
}

/* Weather Notes */
.weather-notes-box {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border: 2px solid #F59E0B;
}

.weather-notes-box h3 {
    color: #92400E;
}

.weather-notes-box .note-content {
    background: white;
    padding: 12px;
    border-radius: 8px;
    margin-top: 12px;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--uasn-dark);
}

.payment-notice {
    background: white;
    border: 2px solid var(--uasn-warning);
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
    position: relative;
    overflow: hidden;
}

.payment-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--uasn-warning);
}

.payment-notice.paid {
    border-color: var(--uasn-success);
    background: linear-gradient(135deg, #D1FAE5 0%, #ECFDF5 100%);
}

.payment-notice.paid::before {
    background: var(--uasn-success);
}

.payment-notice h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--uasn-dark);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-notice.paid h3 {
    color: #065F46;
}

.payment-notice p {
    margin: 0 0 16px 0;
    color: var(--uasn-gray);
    line-height: 1.6;
}

.pay-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--uasn-accent) 0%, #D97706 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    margin-top: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.pay-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    color: white;
}

/* Download Counter */
.download-counter {
    background: white;
    border: 2px solid var(--uasn-primary);
    border-radius: 12px;
    padding: 20px 24px;
    margin: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.download-counter-text {
    font-size: 1rem;
    color: var(--uasn-dark);
    font-weight: 600;
}

.download-counter-number {
    font-size: 1.5rem;
    color: var(--uasn-primary);
    font-weight: 700;
}

.download-progress-bar {
    width: 100%;
    height: 8px;
    background: #E5E7EB;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 12px;
}

.download-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--uasn-primary) 0%, var(--uasn-success) 100%);
    transition: width 0.5s ease;
    border-radius: 10px;
}

/* Image Gallery Styles */
.mission-gallery {
    margin: 48px 0;
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.mission-gallery h2 {
    margin: 0 0 24px 0;
    color: var(--uasn-dark);
    font-size: 1.5rem;
    font-weight: 700;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background: #F9FAFB;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.watermark-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(31, 41, 55, 0.85);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    pointer-events: none;
    font-weight: 600;
    font-size: 0.875rem;
    backdrop-filter: blur(4px);
}

.download-button {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--uasn-primary) 0%, var(--uasn-primary-dark) 100%);
    color: white;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.download-button:hover {
    background: var(--uasn-primary-dark);
    color: white;
}

/* Upsell Section */
.upsell-section {
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    border-radius: 16px;
    padding: 40px 32px;
    margin: 48px 0;
    border: 2px solid #E5E7EB;
}

.upsell-section h2 {
    margin: 0 0 8px 0;
    color: var(--uasn-dark);
    font-size: 1.75rem;
    font-weight: 700;
}

.upsell-subtitle {
    color: var(--uasn-gray);
    font-size: 1rem;
    margin: 0 0 32px 0;
}

.upsell-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.upsell-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
    text-align: center;
}

.upsell-card:hover {
    border-color: var(--uasn-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(47, 142, 180, 0.15);
}

.upsell-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.upsell-card h3 {
    margin: 0 0 8px 0;
    color: var(--uasn-dark);
    font-size: 1.125rem;
    font-weight: 700;
}

.upsell-card p {
    margin: 0 0 12px 0;
    color: var(--uasn-gray);
    font-size: 0.875rem;
    line-height: 1.5;
}

.upsell-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--uasn-primary);
    margin: 12px 0;
}

.upsell-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--uasn-primary);
    color: white !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.upsell-button:hover,
.upsell-button:focus,
.upsell-button:active,
.upsell-button:visited {
    background: var(--uasn-primary-dark);
    transform: scale(1.05);
    color: white !important;
    text-decoration: none;
}

.upsell-bundle {
    background: linear-gradient(135deg, var(--uasn-accent) 0%, #D97706 100%);
    color: white;
    padding: 20px 24px;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
}

.upsell-bundle p {
    margin: 0 0 12px 0;
    font-size: 1.125rem;
    font-weight: 600;
}

.upsell-bundle .upsell-button {
    background: white;
    color: var(--uasn-accent);
}

.upsell-bundle .upsell-button:hover {
    background: #F9FAFB;
}

/* Share & Review Section */
.share-review-section {
    background: white;
    border-radius: 12px;
    padding: 32px;
    margin: 48px 0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.share-box, .review-box {
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #E5E7EB;
    text-align: center;
}

.share-box h3, .review-box h3 {
    margin: 0 0 12px 0;
    color: var(--uasn-dark);
    font-size: 1.125rem;
    font-weight: 700;
}

.share-box p, .review-box p {
    margin: 0 0 16px 0;
    color: var(--uasn-gray);
    font-size: 0.875rem;
}

.share-button, .review-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--uasn-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.share-button:hover, .review-button:hover {
    background: var(--uasn-primary-dark);
    transform: scale(1.05);
    color: white;
}

.review-box {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    border-color: var(--uasn-accent);
}

.review-button {
    background: var(--uasn-accent);
}

.review-button:hover {
    background: #D97706;
}

/* Photographer Dashboard Styles */
.photographer-dashboard .mission-card {
    border-left: 4px solid var(--uasn-primary);
}

.upload-section {
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    padding: 32px;
    border-radius: 12px;
    margin: 32px 0;
    border: 2px solid var(--uasn-primary);
}

.upload-section h3 {
    margin-top: 0;
    color: var(--uasn-primary-dark);
    font-size: 1.25rem;
    font-weight: 700;
}

.upload-section p {
    color: var(--uasn-dark);
    line-height: 1.6;
    margin: 12px 0;
}

.upload-section small {
    color: var(--uasn-gray);
    font-size: 0.813rem;
}

.upload-section a {
    color: var(--uasn-primary);
    font-weight: 600;
    text-decoration: none;
}

.upload-section a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .missions-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-header {
        padding: 40px 24px 32px 24px;
        border-radius: 0 0 16px 16px;
    }
    
    .mission-header h1 {
        font-size: 1.75rem;
    }
    
    .mission-header-meta {
        gap: 8px;
    }
    
    .mission-header-meta .mission-status,
    .mission-header-meta .laanc-badge {
        font-size: 0.75rem;
        padding: 8px 14px;
    }
    
    .mission-details-grid {
        grid-template-columns: 1fr;
    }
    
    /* Better mobile timeline - horizontal compact version */
    .progress-steps {
        padding: 0 10px;
        gap: 8px;
    }
    
    .progress-steps::before {
        top: 15px;
    }
    
    .progress-step {
        flex: 1;
        min-width: 50px;
    }
    
    .progress-step-circle {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    
    .progress-step-label {
        font-size: 0.65rem;
        max-width: 60px;
        line-height: 1.2;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }
    
    .upsell-grid {
        grid-template-columns: 1fr;
    }
    
    .share-review-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .mission-header {
        padding: 24px 20px;
    }
    
    .mission-gallery {
        padding: 20px;
    }
    
    .upsell-section {
        padding: 24px 20px;
    }
}

/* Print Styles for Invoices */
@media print {
    .mission-link,
    .pay-button,
    .download-button,
    .upload-section,
    .upsell-section,
    .share-review-section {
        display: none;
    }
    
    .mission-header {
        background: white;
        color: var(--uasn-dark);
        border: 2px solid #E5E7EB;
    }
}

/* Loading States */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success Messages */
.success-message {
    background: #D1FAE5;
    color: #065F46;
    padding: 16px 20px;
    border-radius: 10px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

/* Empty States */
.no-content {
    text-align: center;
    padding: 60px 20px;
    color: var(--uasn-gray);
}

.no-content h3 {
    color: var(--uasn-dark);
    margin-bottom: 12px;
}

/* Back Link */
.back-to-missions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--uasn-primary);
    text-decoration: none;
    font-weight: 600;
    margin-top: 40px;
    transition: all 0.3s ease;
}

.back-to-missions:hover {
    gap: 12px;
    color: var(--uasn-primary-dark);
}