/* CSS */
.bg-bamboo {
    /* display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc; */
    height: 100vh;
    background-image: url('../image/BgForAuth.jpg');
    /* เปลี่ยน path ตามโครงสร้างโฟลเดอร์ของคุณ */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-dashboard {
    /* display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc; */
    height: 15vh;
    background-image: url('../image/BgForDash.webp');
    /* เปลี่ยน path ตามโครงสร้างโฟลเดอร์ของคุณ */
    background-size: cover;
    /* background-position: center; */
    background-repeat: no-repeat;
}

.minus1 {
    margin-left: -1rem;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    transition: opacity 0.75s, visibility 0.75;
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

.loader::after {
    content: "";
    width: 75px;
    height: 75px;
    border: 15px solid #dddddd;
    border-top-color: rgb(21, 231, 63);
    border-radius: 50%;
    animation: loading 0.75s ease infinite;
}

.gray-border {
    border: 1px solid #cccccc; /* This is a light gray color */
}

/* You can add this inside a <style> tag or your CSS file */
.hidden {
    display: none;
}

.your-select-class {
    margin-top: 0.25rem; /* mt-1 */
    display: block; /* block */
    width: 100%; /* w-full */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
    padding: 0.5rem; /* p-2 */
    border-radius: 0.375rem; /* rounded-md */
    font-size: 0.875rem; /* sm:text-sm, assuming 16px base font size */
    border: 1px solid #cccccc; /* gray-border, example gray */
}

/* Responsive text size for small screens */
@media (min-width: 640px) {
    .your-select-class {
        font-size: 0.875rem; /* text-sm for screens 640px and up */
    }
}

@keyframes loading {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}
