﻿/*.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}



.form-label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 10px;
}

.custom-select-container {
    position: relative;
}

.custom-select {
    transition: all 0.3s;
    background: white;
    cursor: pointer;
    min-height: 46px;
    display: flex;
    align-items: center;
}

    .custom-select:hover {
        border-color: #3498db;
    }

    .custom-select.open {
        border-color: #3498db;
        box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
        border-radius: 8px 8px 0 0;
    }

    .custom-select::after {
        content: "⮟";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        color: #555;
        transition: transform 0.3s;
    }

    .custom-select.open::after {
        transform: translateY(-50%) rotate(180deg);
    }

.select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #3498db;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    display: none;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

    .select-options.open {
        display: block;
    }

.option {
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
}

    .option:hover {
        background: #f0f8ff;
    }

    .option.selected {
        background: #e8f4fc;
        font-weight: 500;
    }

.selected-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 50px;
    border-radius: 8px;
    background: #f8f9fa;
    border: 2px dashed #ddd;
    justify-content: center;
    align-items: center;
}

.tag {
    display: flex;
    align-items: center;
    justify-content:center;
    background: #f0ad4e;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    animation: fadeIn 0.3s;
    width: 48px;
    height: 30px;
}

    .tag .remove {
        margin-left: 8px;
        cursor: pointer;
        font-weight: bold;
        font-size: 16px;
        opacity: 0.8;
        transition: opacity 0.2s;
    }

        .tag .remove:hover {
            opacity: 1;
        }

.instructions {
    background: #e8f4fc;
    border-left: 4px solid #3498db;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
    font-size: 0.95rem;
}

.btn-remove-all {
    margin-top: 15px;
    background: #e74c3c;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s;
}

    .btn-remove-all:hover {
        background: #c0392b;
    }

.no-selection {
    color: #7f8c8d;
    font-style: italic;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-left: 14px;
}

.placeholder {
    background-color:#fff;
    color: #6c757d;
    cursor:pointer;
}

.original-select {
    display: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.group-offers {
    background-color: #f5f5f5;
    border: 1px solid #e4e4e4;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-radius: 12px;
}*/



.form-label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 10px;
}

.custom-select-container {
    position: relative;
    width: 100%;
}

.custom-select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ced4da;
    transition: all 0.3s;
    background: white;
    cursor: pointer;
    min-height: 46px;
    display: flex;
    align-items: center;
    width: 100%;
}

    .custom-select:hover {
        border-color: #3498db;
    }

    .custom-select.open {
        border-color: #3498db;
        box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
        border-radius: 8px 8px 0 0;
    }

    .custom-select::after {
        content: "⮟";
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        color: #555;
        transition: transform 0.3s;
    }

    .custom-select.open::after {
        transform: translateY(-50%) rotate(180deg);
    }

.select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #3498db;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 180px;
    overflow-y: auto;
    z-index: 1000; /* Valoare mai mare pentru a fi deasupra altor elemente */
    display: none;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    width: 100%;
}

    .select-options.open {
        display: block;
    }

.option {
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    box-sizing: border-box;
}

    .option:hover {
        background: #f0f8ff;
    }

    .option.selected {
        background: #e8f4fc;
        font-weight: 500;
    }

.selected-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    min-height: 50px;
    border-radius: 8px;
    background: #f8f9fa;
    border: 2px dashed #ddd;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.tag {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0ad4e;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    width: 48px;
    height: 30px;
}

    .tag .remove {
        margin-left: 8px;
        cursor: pointer;
        font-weight: bold;
        font-size: 16px;
        opacity: 0.8;
        transition: opacity 0.2s;
    }

        .tag .remove:hover {
            opacity: 1;
        }

.btn-remove-all {
    margin-top: 15px;
    background: #e74c3c;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s;
}

    .btn-remove-all:hover {
        background: #c0392b;
    }

.no-selection {
    color: #7f8c8d;
    font-style: italic;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.placeholder {
    background-color: #fff;
    color: #6c757d;
    cursor: pointer;
}

.original-select {
    display: none;
}

.group-offers {
    background-color: #f5f5f5;
    border: 1px solid #e4e4e4;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-radius: 12px;
}
