﻿.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(29, 29, 27, 0.7); /* Opacité basée sur var(--text) */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    padding: 24px;
}

.modal-content {
    background-color: #ffffff;
    width: 100%;
    max-width: 800px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.modal-header {
    background-color: var(--primary);
    color: #ffffff;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-body {
    padding: 32px;
}

.modal-footer {
    padding: 24px;
    background-color: var(--background);
    border-top: 1px solid var(--tertiary);
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}
