/* for e-puja select dropdown */

.select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%; /* Adjust as needed */
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 8px 32px 8px 8px;
    border: 1px solid #ccc;
    border-radius: 20px; /* Circular border radius */
    background-color: #fff;
    cursor: pointer;
    width: 100%;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #333; /* Arrow color */
    pointer-events: none;
}


/* end for e-pujA select dropdown */