.language-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.language-dialog-content {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.language-dialog h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.language-dialog p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    margin: 0.75rem 0;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    background: white;
}

.lang-btn:hover {
    border-color: #667eea;
    background: #f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.language-flag {
    width: 32px;
    height: 22px;
    margin-right: 1rem;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.flag-en {
    background: linear-gradient(to bottom, #012169 33%, #fff 33%, #fff 66%, #c8102e 66%);
    position: relative;
}

.flag-fr {
    background: linear-gradient(to right, #002654 33%, #fff 33%, #fff 66%, #ce1126 66%);
}

.flag-ro {
    background: linear-gradient(to right, #002b7f 33%, #fcd116 33%, #fcd116 66%, #ce1126 66%);
}