.mrv-projets-container {
    margin: 20px 0;
}

.mrv-filters {
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.mrv-filter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.mrv-filter-fields {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.mrv-select2 {
    min-width: 250px;
}

.select2-container--default .select2-selection--single {
    height: 32px;
    padding: 3px;
}

.btn {
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    margin-right: 5px;
    cursor: pointer;
}

.btn-primary {
    background-color: #42b510;
}

.btn-primary:hover {
    background-color: #387a3e;
}

.btn-secondary {
    background-color: gray;
}

.btn-secondary:hover {
    background-color: rgb(95, 94, 94);
}

.mrv-projets-container table {
    font-size: 12px;
}

th {
    color: #ffffff !important;
    font-weight: bold;
    text-wrap: nowrap;
    background-color: #42b510;
}

.name-projet {
    cursor: pointer !important;
    font-weight: bold;
}

.name-projet:hover {
    color: #387a3e;
}

.dataTables_wrapper {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .mrv-filter-row {
        flex-direction: column;
        align-items: stretch;
    }

    .mrv-select2 {
        min-width: 100%;
    }

    .mrv-filters .btn {
        width: 100%;
        margin: 5px 0;
    }
}