﻿.multi_select_box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.all_fields, .display_fields {
    flex: 1;
    min-width: 250px;
}

.select-search {
    position: relative;
    margin-bottom: 10px;
}

.searchListOnglets {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.fields_to_display {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    min-height: 200px;
    list-style-type: none;
    background-color: #f8f9fa;
}

    .fields_to_display li {
        background-color: #3f85f4;
        color: white;
        padding: 8px 12px;
        border-radius: 4px;
        margin-bottom: 5px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
    }

        .fields_to_display li a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }

.add-button, .remove-button {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

    .add-button:hover, .remove-button:hover {
        background: rgba(255, 255, 255, 0.5);
    }

.custom-notification {
    background-color: #e9f7ef;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 10px 40px 10px 16px;
    border-radius: 6px;
    font-size: 0.95rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: opacity 0.5s ease-in-out;
}

.custom-close {
    position: absolute;
    top: 6px;
    right: 10px;
    background: none;
    border: none;
    font-size: 16px;
    color: #155724;
    font-weight: bold;
    cursor: pointer;
}

    .custom-close:hover {
        color: #0b2e13;
    }

.fade-in {
    animation: fadeIn ease-in-out 0.6s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.notification-success {
    background-color: #e9f7ef;
    color: #155724;
    border: 1px solid #c3e6cb;
    box-sizing: unset;
}

.notification-error {
    background-color: #fdecea;
    color: #a94442;
    border: 1px solid #f5c6cb;
    box-sizing: unset;
}

    .notification-error .custom-close {
        color: #a94442;
    }

        .notification-error .custom-close:hover {
            color: #721c24;
        }


.username-input-design {
    padding-left: 2px;
}

.password-input-design {
    padding-right: 2px;
}

.form-label {
    font-weight: 500;
}

.organisation-design {
    padding-left: 2px;
}

.config-next-button-design {
    padding-right: 2px;
}