/* =====================================================
   APERTURE MISSION PLANNER STYLES
   Styles pour le planificateur de missions avancÃ©
   ===================================================== */

/* Variables CSS pour le planificateur */
:root {
    --planner-bg: rgba(0, 0, 0, 0.9);
    --planner-border: var(--aperture-orange);
    --calendar-bg: rgba(20, 20, 20, 0.95);
    --calendar-hover: rgba(255, 107, 53, 0.1);
    --mission-low: #4ecdc4;
    --mission-medium: #f39c12;
    --mission-high: #e67e22;
    --mission-critical: #e74c3c;
}

/* Conteneur principal du calendrier */
.calendar-wrapper {
    background: var(--calendar-bg);
    border: 2px solid var(--planner-border);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* En-tÃªte du calendrier */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, var(--aperture-orange), #ff8c42);
    border-radius: 10px;
    color: white;
}

.calendar-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.2rem;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Actions du calendrier */
.calendar-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-aperture-secondary {
    background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    border: none;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.btn-aperture-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

/* Grille du calendrier */
.calendar-grid {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: var(--aperture-orange);
}

.day-header {
    padding: 15px 5px;
    text-align: center;
    font-weight: bold;
    color: white;
    background: linear-gradient(135deg, var(--aperture-orange), #ff8c42);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.day-header:last-child {
    border-right: none;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #333;
}

.calendar-day {
    min-height: 100px;
    background: var(--calendar-bg);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 8px;
}

.calendar-day:hover {
    background: var(--calendar-hover);
    border-color: var(--aperture-orange);
    transform: scale(1.02);
    z-index: 2;
}

.calendar-day.selected {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--aperture-orange);
    box-shadow: inset 0 0 10px rgba(255, 107, 53, 0.3);
}

.calendar-day.today {
    background: rgba(255, 107, 53, 0.15);
    border: 2px solid var(--aperture-orange);
    font-weight: bold;
}

.calendar-day.other-month {
    opacity: 0.4;
    background: rgba(50, 50, 50, 0.5);
}

.day-number {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--aperture-light-grey);
    margin-bottom: 5px;
}

.today .day-number {
    color: var(--aperture-orange);
}

/* Indicateurs de missions */
.day-missions {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow: hidden;
}

.mission-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 2px 4px;
    border-radius: 3px;
    font-size: 0.7rem;
    background: rgba(255, 255, 255, 0.1);
    border-left: 3px solid;
    transition: all 0.2s ease;
}

.mission-indicator:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.mission-indicator.low {
    border-left-color: var(--mission-low);
    color: var(--mission-low);
}

.mission-indicator.medium {
    border-left-color: var(--mission-medium);
    color: var(--mission-medium);
}

.mission-indicator.high {
    border-left-color: var(--mission-high);
    color: var(--mission-high);
}

.mission-indicator.critical {
    border-left-color: var(--mission-critical);
    color: var(--mission-critical);
    animation: pulse 2s infinite;
}

.mission-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

.mission-title {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Animation pour les missions critiques */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Affichage des missions du jour */
.day-missions-container {
    margin-top: 20px;
    background: var(--calendar-bg);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid var(--aperture-orange);
}

.no-missions {
    text-align: center;
    color: var(--aperture-light-grey);
    padding: 40px 20px;
}

.no-missions p {
    margin-bottom: 15px;
    font-style: italic;
}

.btn-aperture-small {
    background: var(--aperture-orange);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-aperture-small:hover {
    background: #ff8c42;
    transform: translateY(-1px);
}

/* Cartes de missions */
.missions-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mission-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mission-card.low {
    border-left-color: var(--mission-low);
}

.mission-card.medium {
    border-left-color: var(--mission-medium);
}

.mission-card.high {
    border-left-color: var(--mission-high);
}

.mission-card.critical {
    border-left-color: var(--mission-critical);
    background: rgba(231, 76, 60, 0.1);
}

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

.mission-header h5 {
    margin: 0;
    color: var(--aperture-light-grey);
    font-size: 1.1rem;
}

.mission-status {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.mission-status.pending {
    background: rgba(241, 196, 15, 0.2);
    color: #f1c40f;
}

.mission-status.in_progress {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
}

.mission-status.completed {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
}

.mission-status.on_hold {
    background: rgba(155, 89, 182, 0.2);
    color: #9b59b6;
}

.mission-status.cancelled {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

.mission-description {
    color: var(--aperture-light-grey);
    margin: 10px 0;
    line-height: 1.4;
}

.mission-meta {
    display: flex;
    gap: 10px;
    margin: 10px 0;
    flex-wrap: wrap;
}

.mission-category,
.mission-priority {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--aperture-light-grey);
}

.priority-low {
    background: rgba(78, 205, 196, 0.2);
    color: var(--mission-low);
}

.priority-medium {
    background: rgba(243, 156, 18, 0.2);
    color: var(--mission-medium);
}

.priority-high {
    background: rgba(230, 126, 34, 0.2);
    color: var(--mission-high);
}

.priority-critical {
    background: rgba(231, 76, 60, 0.2);
    color: var(--mission-critical);
}

.mission-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-edit,
.btn-delete {
    padding: 6px 12px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.btn-edit {
    background: var(--aperture-blue);
    color: white;
}

.btn-edit:hover {
    background: #2980b9;
    transform: translateY(-1px);
}

.btn-delete {
    background: #e74c3c;
    color: white;
}

.btn-delete:hover {
    background: #c0392b;
    transform: translateY(-1px);
}

/* =====================================================
   MODAL DE MISSION
   ===================================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
    border: 2px solid var(--aperture-orange);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--aperture-orange), #ff8c42);
    border-radius: 18px 18px 0 0;
    color: white;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--aperture-orange);
    font-weight: bold;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #444;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--aperture-light-grey);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--aperture-orange);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group select {
    cursor: pointer;
}

.form-group input[type="number"] {
    text-align: center;
}

/* Commentaire GLaDOS dans le modal */
.glados-comment {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid var(--aperture-orange);
    border-radius: 10px;
    margin: 20px 0;
    animation: gladosGlow 3s ease-in-out infinite;
}

@keyframes gladosGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(255, 107, 53, 0.3); }
    50% { box-shadow: 0 0 15px rgba(255, 107, 53, 0.5); }
}

.glados-avatar {
    font-size: 2rem;
    animation: gladosFloat 2s ease-in-out infinite;
}

@keyframes gladosFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.glados-text {
    flex: 1;
    color: var(--aperture-light-grey);
    font-style: italic;
    line-height: 1.4;
    padding: 5px 0;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding: 20px 25px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0 0 18px 18px;
}

.btn-cancel {
    background: #6c757d;
    border: none;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

/* =====================================================
   MODAL BOUTIQUE DE MISSIONS
   ===================================================== */

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

.package-card {
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    border: 2px solid #444;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.package-card:hover::before {
    left: 100%;
}

.package-card:hover {
    border-color: var(--aperture-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.package-card.featured {
    border-color: var(--aperture-orange);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), #2c2c2c);
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--aperture-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(15deg);
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.package-card h4 {
    color: var(--aperture-orange);
    margin: 0 0 15px 0;
    font-size: 1.3rem;
}

.package-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--aperture-light-grey);
    margin: 15px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.package-features li {
    padding: 8px 0;
    color: var(--aperture-light-grey);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 25px;
}

.package-features li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--aperture-orange);
    font-weight: bold;
}

.package-features li:last-child {
    border-bottom: none;
}

.glados-intro {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    margin-bottom: 25px;
    border: 1px solid var(--aperture-orange);
}

.custom-missions {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin-top: 25px;
    border: 1px solid #444;
}

.custom-missions h4 {
    color: var(--aperture-orange);
    margin: 0 0 15px 0;
}

.custom-form {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 10px;
    align-items: end;
}

.custom-form input,
.custom-form select {
    padding: 10px;
    border: 1px solid #444;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--aperture-light-grey);
}

/* =====================================================
   NOTIFICATIONS
   ===================================================== */

.notification {
    position: fixed;
    top: 20px;
    right: -400px;
    width: 350px;
    z-index: 2000;
    transition: right 0.3s ease;
}

.notification.show {
    right: 20px;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-left: 4px solid;
}

.notification-success .notification-content {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border-left-color: #27ae60;
    color: white;
}

.notification-error .notification-content {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-left-color: #c0392b;
    color: white;
}

.notification-info .notification-content {
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-left-color: #2980b9;
    color: white;
}

.notification-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.notification-message {
    flex: 1;
    font-weight: 500;
}

.notification-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

@media (max-width: 768px) {
    .calendar-wrapper {
        padding: 15px;
        margin: 10px 0;
    }
    
    .calendar-header {
        padding: 10px;
        flex-direction: column;
        gap: 10px;
    }
    
    .calendar-title {
        font-size: 1.2rem;
    }
    
    .calendar-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .calendar-day {
        min-height: 80px;
        padding: 5px;
    }
    
    .day-number {
        font-size: 1rem;
    }
    
    .mission-indicator {
        font-size: 0.6rem;
        padding: 1px 3px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 15px;
    }
    
    .mission-packages {
        grid-template-columns: 1fr;
    }
    
    .custom-form {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .notification {
        width: calc(100% - 40px);
        right: -100%;
    }
    
    .notification.show {
        right: 20px;
    }
}

@media (max-width: 480px) {
    .calendar-days-header,
    .calendar-days {
        grid-template-columns: repeat(7, 1fr);
        font-size: 0.8rem;
    }
    
    .day-header {
        padding: 8px 2px;
    }
    
    .calendar-day {
        min-height: 60px;
        padding: 3px;
    }
    
    .mission-indicator {
        display: none; /* Masquer les indicateurs sur trÃ¨s petits Ã©crans */
    }
    
    .calendar-day.has-missions::after {
        content: 'â€¢';
        position: absolute;
        bottom: 5px;
        right: 5px;
        color: var(--aperture-orange);
        font-size: 1.2rem;
    }
}

/* =====================================================
   ANIMATIONS ET EFFETS SPÃ‰CIAUX
   ===================================================== */

/* Animation de chargement */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    border-top-color: var(--aperture-orange);
    animation: spin 1s ease-in-out infinite;
}

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

/* Effet de survol pour les jours avec missions */
.calendar-day.has-missions {
    position: relative;
}

.calendar-day.has-missions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.calendar-day.has-missions:hover::before {
    opacity: 1;
}

/* Effet de particules pour les missions critiques */
.mission-critical-effect {
    position: relative;
    overflow: hidden;
}

.mission-critical-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.1) 0%, transparent 70%);
    animation: criticalPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes criticalPulse {
    0%, 100% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* ThÃ¨me sombre amÃ©liorÃ© */
@media (prefers-color-scheme: dark) {
    :root {
        --calendar-bg: rgba(10, 10, 10, 0.98);
        --planner-bg: rgba(0, 0, 0, 0.95);
    }
    
    .modal-content {
        background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    }
    
    .package-card {
        background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    }
}

/* Mode haute performance (rÃ©duction des animations) */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .calendar-day:hover {
        transform: none;
    }
    
    .mission-indicator:hover {
        transform: none;
    }
}

/* Impression (si quelqu'un veut imprimer le calendrier) */
@media print {
    .modal-overlay,
    .notification,
    .calendar-actions,
    .mission-actions {
        display: none !important;
    }
    
    .calendar-wrapper {
        background: white;
        border: 1px solid black;
        box-shadow: none;
    }
    
    .calendar-day {
        background: white;
        color: black;
        border: 1px solid #ccc;
    }
    
    .mission-indicator {
        background: #f0f0f0;
        color: black;
    }
}

/* =====================================================
   ACCESSIBILITÃ‰
   ===================================================== */

/* Focus visible pour la navigation au clavier */
.calendar-day:focus,
.nav-btn:focus,
.btn-aperture:focus,
.btn-aperture-secondary:focus {
    outline: 2px solid var(--aperture-orange);
    outline-offset: 2px;
}

/* Texte pour les lecteurs d'Ã©cran */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Indicateurs de statut pour l'accessibilitÃ© */
.mission-status::before {
    content: attr(aria-label) ': ';
    position: absolute;
    left: -10000px;
}

/* Contraste Ã©levÃ© pour les utilisateurs ayant des difficultÃ©s visuelles */
@media (prefers-contrast: high) {
    :root {
        --aperture-orange: #ff6b00;
        --aperture-light-grey: #ffffff;
    }
    
    .calendar-day {
        border: 2px solid #ffffff;
    }
    
    .mission-indicator {
        background: #000000;
        color: #ffffff;
        border: 1px solid #ffffff;
    }
}
