/* Модальне вікно виходу з гри */
.leave-game-modal {
    max-width: 500px;
}

.leave-options {
    margin: 1.5rem 0;
}

.option-info {
    margin-bottom: 1.5rem;
}

.consequences {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.consequences h4 {
    margin: 0 0 0.5rem 0;
    color: #856404;
}

.consequences ul {
    margin: 0;
    padding-left: 1.5rem;
}

.consequences li {
    margin: 0.25rem 0;
    color: #856404;
}

.leave-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Кнопки для виходу */
.btn-warning {
    padding: 0.75rem 1.5rem;
    background: #ffc107;
    color: #212529;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
}

.btn-warning:hover {
    background: #e0a800;
}

.btn-danger {
    padding: 0.75rem 1.5rem;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
}

.btn-danger:hover {
    background: #c82333;
}

/* Модальне вікно результатів */
.results-modal {
    max-width: 400px;
    text-align: center;
}

.results-early, .results-normal {
    margin: 1rem 0;
}

.partial-rewards {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.partial-rewards h4 {
    margin: 0 0 0.5rem 0;
    color: #0c5460;
}

/* Сповіщення */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem;
    border-radius: 5px;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    max-width: 400px;
}

.notification.success {
    background: #28a745;
    color: white;
}

.notification.error {
    background: #dc3545;
    color: white;
}

.notification.warning {
    background: #ffc107;
    color: #212529;
}

.notification.info {
    background: #17a2b8;
    color: white;
}

.notification button {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
}

/* Адаптивність */
@media (max-width: 768px) {
    .leave-game-modal,
    .results-modal {
        margin: 1rem;
        width: calc(100% - 2rem);
    }
    
    .leave-buttons {
        gap: 0.5rem;
    }
}