h3 {
    color: #666;
}
.principale-container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    height: 100%;
    width: 100%;
    padding: 0 5%;
    justify-content: space-between;
}

.card {
    background-color: transparent;
    width: 200px;
    border: none;
}

.card-title {
    color: #ff8c42;
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: bold;
    min-height: 36px;
}

.card-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
}
select.multiple {
    height:80px;
}

.clearul ul{
    list-style: none;
}
.card ul {
    list-style: none;
    padding: 0;
}

.card ul li a,
.card ul li {
    color: #189cd0;
    font-size: 17px;
    line-height: 24px;
    cursor: pointer;
    transition: color 0.3s, text-decoration 0.3s;
}

form label{
    color: #1e3a70;
    font-weight: 700;
    //height: 100%;
    text-align: right;
    padding-right:20px;
}

form input:not([type="checkbox"]):not([type="radio"]) {
    border:0;
    height:36px;
    padding:2px;
    box-shadow:0px 2px 4px 0px rgba(30, 58, 112, 0.3019607843);
}
.card ul li a:hover {
    /*text-decoration: underline;*/
    color: #005f8d;
}
select.multiselect{
    height:100px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-right {
        width: 100%;
        justify-content: space-between;
    }

    .principale-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        margin-top: 20px;
    }

    .card {
        width: 100%;
        min-height: auto;
    }
}

.gravite {
    padding: 0 2%;
    .buttons {
        gap: 10px;
    }
    .gap-5 {
        gap: 5px !important;
    }
}
