@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");

* {
    font-family: 'Poppins', sans-serif;
}

.custom-button-login {
    font-size: 20px;
    /* Increase font size */
    font-weight: bold;
    padding: 1rem 2rem;
    /* Adjust padding */
    width: 100%;
    /* Make the button take up the full width of its container */
    max-width: 500px;
    /* Set a maximum width if needed */
    margin: 0 auto;
    /* Center the button horizontally */
}

.custom-button-login:hover {
    background-color: #ffcc00;
    /* Change background on hover (optional) */
    border-color: #ffcc00;
    /* Border color on hover (optional) */
}

.operasabun-button-os-request{
    overflow: hidden;
    position: relative;
    /* Make sure the button is positioned relative for pseudo-elements */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 300px;
    /* Set width */
    height: 300px;
    /* Set height */
    font-size: 1.5rem;
    /* Adjust font size */
    padding: 1rem;
    /* Adjust padding if needed */
    border-radius: 10px;
    /* Rounded corners */
    text-decoration: none;
    /* Remove underline from the link */
    text-align: center;
    /* Center text horizontally */
    background-color: #ffc107;
    /* Background color */
    color: black;
    /* Text color */
    transition: background-color 0.3s ease;
    /* Smooth background color transition */
    
}

.operasabun-button-os-request::before,
.operasabun-button-os-request::after {
    content: "";
    position: absolute;
    width: 177px;
    /* Increase the diameter of the circular motif */
    height: 266px;
    /* Increase the diameter of the circular motif */
    background-color: #FFDE89;
    /* White color for the motif */
    border-radius: 50%;
    /* Makes the shape circular */
    opacity: 50%;
}

.operasabun-button-os-request::before {
    top: -100px;
    /* Position the motif in the top-left corner */
    left: -100px;
    /* Position the motif in the top-left corner */
}

.operasabun-button-os-request::after {
    bottom: -150px;
    /* Position the motif in the bottom-right corner */
    right: -100px;
    /* Position the motif in the bottom-right corner */
}

.operasabun-button-os-request img {
    margin-top: 50px;
    width: 100px;
    /* Adjust image size */
    height: auto;
    /* Maintain aspect ratio */
    margin-bottom: 1rem;
    /* Space between image and text */
}

.operasabun-button-os-request h5 {
    margin: 0;
    /* Remove default margin */
}

.operasabun-button-os-request:hover {
    background-color: #ffcc00;
    /* Change background color on hover */
}




.form-control.filled {
    font-weight: bold;
}

.table-header {
    background-color: yellow;
}


.form-control-custom {
    color: #000000 !important;
    border: none !important;
    border-bottom: 1px solid #000 !important;
    /* Underline style */
    border-radius: 0 !important;
    /* Remove rounded corners */
    outline: none !important;
    /* Remove default outline */
    background-color: transparent !important;
    /* Remove background color */
    box-shadow: none !important;
    /* Remove box shadow */
}

.form-control-custom:focus {
    border-bottom: 1px solid #000000 !important;
    /* Change underline color on focus */
    outline: none !important;
    /* Remove default outline */
    box-shadow: none !important;
    /* Remove box shadow on focus */
}

.table-bordered {
    border: 1px solid black !important; /* Default Bootstrap border color */
}

.table-bordered th,
.table-bordered td {
    border: 1px solid black !important; /* Ensure border color is applied */
}


@media (max-width: 550px) {
    * {
        font-size: 14px;
    }

    .modal .modal-body input{
        font-size: 14px !important;
    }

    #note_request {
        font-size: 14px !important;
    }

    .form-select{
        font-size: 14px !important;
    }

    .col-xs-6 {
        width: 50% !important;
        flex: 0 0 50% !important;
        /* Ensure each column takes 50% of the width */
    }

    .col-xs-4 {
        width: 25%;
        flex: 0 0 25%;
    }


    .col-xs-12 {
        width: 100%;
        flex: 0 0 100%;
        /* Make full width */
    }

    .form-control-custom {
        border: none !important;
        border-bottom: 1px solid #000 !important;
        /* Underline style */
        border-radius: 0 !important;
        /* Remove rounded corners */
        outline: none !important;
        /* Remove default outline */
        background-color: transparent !important;
        /* Remove background color */
        box-shadow: none !important;
        /* Remove box shadow */
    }

    .create-request-form {
        padding: 10px;
        /* Adjust padding to fit smaller screens */
    }

    .form-control-plaintext {
        font-size: 14px;
        /* Decrease plaintext font size */
    }

    .table-bordered {
        border: 1px solid black !important; /* Default Bootstrap border color */
    }
    
    .table-bordered th,
    .table-bordered td {
        border: 1px solid black !important; /* Ensure border color is applied */
    }

    .table td, .table th {
        max-width: 150px; /* Set max-width as per your requirement */
        font-size: 13px !important;
        vertical-align: middle !important;
        text-align: center !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
        white-space: normal !important;
    }
    
    

    .table-header {
        font-size: 13px !important;
        /* Decrease table font size */
    }
    .tabel-body{
        font-size: 13px !important;
        text-align: center;
        /* vertical-align: middle !important; */

    }

    .btn-outline-dark {
        font-size: 14px;
        /* Adjust button font size */
        padding: 0.5rem 1rem;
        /* Adjust button padding */
    }

    .btn-lg {
        font-size: 14px;
        /* Adjust large button font size */
    }
} 

@media (max-width: 1300px) {
    * {
        font-size: 16px;
    }

    .modal .modal-body input{
        font-size: 16px !important;
    }

    #note_request {
        font-size: 16px !important;
    }

    .form-select{
        font-size: 16px !important;
    }

    .col-xs-6 {
        width: 50% !important;
        flex: 0 0 50% !important;
        /* Ensure each column takes 50% of the width */
    }

    .col-xs-4 {
        width: 25%;
        flex: 0 0 25%;
    }


    .col-xs-12 {
        width: 100%;
        flex: 0 0 100%;
        /* Make full width */
    }

    .form-control-custom {
        border: none !important;
        border-bottom: 1px solid #000 !important;
        /* Underline style */
        border-radius: 0 !important;
        /* Remove rounded corners */
        outline: none !important;
        /* Remove default outline */
        background-color: transparent !important;
        /* Remove background color */
        box-shadow: none !important;
        /* Remove box shadow */
    }

    .create-request-form {
        padding: 10px;
        /* Adjust padding to fit smaller screens */
    }

    .form-control-plaintext {
        font-size: 16px;
        /* Decrease plaintext font size */
    }

    .table-bordered {
        border: 1px solid black !important; /* Default Bootstrap border color */
    }
    
    .table-bordered th,
    .table-bordered td {
        border: 1px solid black !important; /* Ensure border color is applied */
    }

    .table td, .table th {
        max-width: 150px; /* Set max-width as per your requirement */
        font-size: 12px !important;
        vertical-align: middle !important;
        text-align: center !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
        white-space: normal !important;
    }
    
    

    .table-header {
        font-size: 14px !important;
        /* Decrease table font size */
    }
    .tabel-body{
        font-size: 14px !important;
        text-align: center;
        /* vertical-align: middle !important; */

    }

    .btn-outline-dark {
        font-size: 14px;
        /* Adjust button font size */
        padding: 0.5rem 1rem;
        /* Adjust button padding */
    }

    .btn-lg {
        font-size: 14px;
        /* Adjust large button font size */
    }
} 