﻿
.mission-panel {
    max-width: 100%;
    margin: 10px;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

.mission-block h3 {
    margin-bottom: 10px;
}

.progress-container {
    width: 100%;
    height: 12px;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    margin: 10px 0;
}

.progress-fill {
    height: 100%;
    background-color: #4CAF50;
    width: 0%;
    transition: width 0.5s ease-in-out;
}

.watch-btn {
    width: 100%;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

    .watch-btn:hover {
        background-color: #0056b3;
    }

.reset-timer {
    margin-top: 10px;
    font-size: 0.9em;
    color: #888;
    text-align: center;
}

.modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

body.modal-open {
    overflow: hidden;
}


@media (max-width: 767px) {
    .modal-dialog {
        width: 100%;
        margin: 0;
    }

    .modal-content {
        height: 100vh;
        border: none;
        border-radius: 0;
    }

    .modal-body {
        height: 100%;
        padding: 0;
        background-color: black;
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    cursor: pointer;
}

    .close:hover {
        color: red;
    }

