﻿.custom-select-wrapper {
    position: relative;
    width: 355px;
    display: flex;
    margin: auto;
}

.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding-right: 30px; /* Space for the arrow */
}

.custom-select-wrapper::after {
    content: '\25BC'; /* Downward arrow Unicode */
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-control.custom-select {
    border-radius: 4px;
    border: 1px solid #ccc;
    padding: 8px;
}

    .form-control.custom-select:focus {
        border-color: #2cb4f5;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    }

#tab_button {
    font-family: sans-serif;
    margin-top: 20px;
}

.nva {
    position: relative;
    width: 100%;
    height: 50px;
    /*background: rgba(34, 34, 34, 0.07);*/
    /*border-radius: 10px;*/
    /*box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .1);*/
    box-shadow: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
}

.anv {
    font-size: 15px;
    color: white;
    text-decoration: none;
    max-height: 50px;
    text-align: center;
    flex: 1;
    max-width: min-content;
    border-radius: 0px;
}

.nva .anv:nth-child(1) {
    width: 170px;
    height: auto;
}

.nva .anv:nth-child(2) {
    width: 170px;
    height: auto;
}

.anv:hover {
    color: white;
}

#anim {
    display: none;
}

.wash .member {
    text-align: center;
    margin-bottom: 10px;
    box-shadow: 0px 0px 12px 0px rgba(34, 34, 34, 0.07);
    padding: 10px 5px;
    background: #fff;
}

    .wash .member img {
        width: 350px;
        height: 190px;
        margin: 5px 0 10px 0;
    }

    .wash .member span, h4 {
        font-weight: 700;
        margin: 5px 0;
        font-size: 18px;
    }

    .wash .member p {
        padding-top: 5px;
        font-size: 12px;
        font-style: italic;
        color: #aaaaaa;
    }

@media (max-width: 767.98px) {
    .col-6 {
        max-width: 50%;
        flex: 0 0 50%;
    }

    .wash .member img {
        margin: 3px 0 5px 0; /* Further reduced top and bottom margins */
    }

    .wash .member h4 {
        font-size: 14px;
        margin: 2px 0; /* Further reduced margins */
    }

    .wash .member span, .wash .member p {
        font-size: 12px;
        margin: 1px 0; /* Further reduced margins */
    }

    .wash .member p {
        padding-top: 2px; /* Further reduced padding */
        font-size: 10px;
    }
}
/*Pagination Design*/

.simple-pagination ul {
    padding: 0;
    list-style: none;
    text-align: center;
    margin: 20px auto;
    /*display: inline-block;*/
}

.simple-pagination li {
    display: inline-block;
    margin: 2px;
}

    .simple-pagination li a,
    .simple-pagination li span {
        display: block;
        width: 40px;
        height: 40px;
        line-height: 40px;
        background-color: #fff;
        text-align: center;
        text-decoration: none;
        color: #252525;
        border-radius: 4px;
        margin: 5px;
        box-shadow: inset 0 5px 10px rgba(0, 0, 0, .1), 0 2px 5px rgba(0, 0, 0, .5);
        transition: all 1s ease;
    }

        .simple-pagination li a:hover {
            background: #2cb4f5;
            color: #fff;
        }

.simple-pagination .current {
    color: #fff;
    background-color: #2cb4f5;
    border-color: #fff;
    border: 1px solid;
    cursor: pointer;
}

.simple-pagination .prev.current,
.simple-pagination .next.current {
    background: #2cb4f5;
    border: none;
}
