    /* Override .med span for medecin page */
    .med span {
        position: absolute;
        text-align: center;
        background-color: #ddd;
        color: #CF2E2E;
        padding: 4px 0;
        font-size: 15px;
        margin-top: 80px;
        z-index: 1;
        width: 104px;
    }
    

.med img {
	    width: 100px;
    height: 150px;
    border-radius: 12px;
    margin-right: 10px;
    border: 2px solid #ddd;
    position: relative;
    overflow: hidden;
	object-fit: cover;
    object-position: center;
}
    
    
    
    
    
        .search-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .combo-group {
        display: flex;
        flex-wrap: wrap;
        gap: 55px;
        justify-content: center;
        width: 100%;
    }

    .combo-container {
        position: relative;
        display: flex;
        /* Ensure consistency for all containers */
        flex-direction: column;
    }


    .combo-input {
        all: unset;
        width: 65%;
        padding: 8px;
        border-radius: 5px;
        font-style: italic;
    }

    .dropdown-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        max-height: 200px;
        overflow-y: auto;
        background: white;
        border: 1px solid #ccc;
        border-top: none;
        border-radius: 0 0 4px 4px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .dropdown-item {
        padding: 8px;
        cursor: pointer;
    }

    .dropdown-item:hover {
        background-color: #f0f0f0;
    }

    .arrow-button {
        background: #222B5F;
        border: none;
        cursor: pointer;
        font-size: 14px;
        color: white;
        width: 15%;
    }

    .arrow-button:focus {
        outline: none;
    }

    .clear-button {
        cursor: pointer;
        padding: 2px 6px;
        border: none;
        background: transparent;
        border-radius: 50%;
        font-size: 25px;
        width: 13%;
        color: #222B5F;
        position: absolute;
        right: 45px;
    }

    .page-link {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 20px;
        background-color: #222B5F;
        color: white;
        text-decoration: none;
        border-radius: 4px;
        text-align: center;
        transition: background-color 0.3s;
    }

    .page-link:hover {
        background-color: #151b42;
    }

    .page-link.disabled {
        background-color: #aaaaaa;
        cursor: not-allowed;
    }

    @media (max-width: 600px) {
        .combo-container {
            width: 90%;
        }
		    .combo-container:last-child {
       margin-left:-13px;
    }

    }

    .single-box {
        position: relative;
        border: 2px solid #222B5F;
        border-radius: 4px;
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
    }