/* Outside Beirut Dialog Styles */

.outside-beirut-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 24px;
    max-width: 500px;
    width: 90%;
    z-index: 10000;
    border: 2px solid #e9ecef;
    animation: slideInScale 0.3s ease-out;
}

.outside-beirut-dialog h3 {
    color: #2c3e50;
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.outside-beirut-dialog p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.outside-beirut-dialog .dialog-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.outside-beirut-dialog .btn,
.outside-beirut-dialog .dialog-btn-ok {
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: #f3f4f6;
    color: #374151;
    border: none;
    cursor: pointer;
    font-size: 0.95em;
}

.outside-beirut-dialog .btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
}

.outside-beirut-dialog .btn-primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.outside-beirut-dialog .btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
}

.outside-beirut-dialog .btn-secondary:hover {
    background: linear-gradient(135deg, #495057 0%, #343a40 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.3);
}

.outside-beirut-dialog .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5em;
    color: #6c757d;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.outside-beirut-dialog .close-btn:hover {
    background: #f8f9fa;
    color: #495057;
    transform: rotate(90deg);
}

.outside-beirut-dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    animation: fadeIn 0.3s ease-out;
}

@keyframes slideInScale {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .outside-beirut-dialog {
        padding: 20px;
        margin: 20px;
        max-width: calc(100% - 40px);
    }
    
    .outside-beirut-dialog h3 {
        font-size: 1.3em;
    }
    
    .outside-beirut-dialog .dialog-actions {
        flex-direction: column;
    }
    
    .outside-beirut-dialog .btn {
        width: 100%;
    }
}
