
.login_background {
    min-height: 100vh;
    background-color: #1565c0; /* Base blue color */
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%),
    linear-gradient(225deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
}

.card {
    background-color: white;
    border-radius: 0.5rem;
    border: 1px solid #dad4d4;
    padding: 2rem;
    width: 100%;
    max-width: 30rem;
    margin: 0 auto;
}

.styled-input {
    width: 100%;
    padding: 0.60rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.label-styled-input {
    width: 100%;
    /*padding: 0.60rem 1rem;*/
}

.styled-input:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.2);
}

.styled-input-dropdown {
    width: 100%;
    padding: 0.60rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
    color: #9ca3af;
    background-color: #fff;
}

.styled-input-dropdown:focus {
    border-color: #3b82f6; /* Tailwind blue-500 */
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3); /* subtle focus ring */
}

.form-input {
    margin-top: 1rem;
    position: relative;
}

.button {
    width: 100%;
    background-color: #22409a;
    padding: 0.60rem 1rem;
    border-radius: 0.5rem;
    font-size: 15px;
    color: #e5e7eb;
    margin-bottom: 2.5rem;
    margin-top: 0.6rem;
}

thead {
    font-family: montserrat, sans-serif;
    color: black !important;
}

tbody {
    font-family: montserrat, sans-serif;
    font-size: 14px
}

.navigation_bar {
    border-bottom: 2px solid #eceaea;
    background-color: white;
    padding: 19px 3.3rem;
}

.my-icon {
    color: rgb(107 114 128);
    transition: color 0.3s ease;
}

.my-icon:hover {
    color: #050505;
}

.image-wrapper {
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


.content-card {
    background-color: white;
    border-radius: 0.5rem;
    border: 1px solid #dad4d4;
    padding: 20px;
    min-height: 90vh;
    margin-top: 4vh;
}

.form-input i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #555;
}
.custom-select {
    appearance: none;
    background-color: hsl(0deg 0% 96.86%);
    border: 1px solid #ccc;
    border-radius: 7px;
    padding: 2px 12px;
    color: #040404 !important;
    width: 8rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    background-image: url('data:image/svg+xml;utf8,<svg fill="gray" height="12" viewBox="0 0 20 20" width="12" xmlns="http://www.w3.org/2000/svg"><path d="M5.516 7.548L10 12.032l4.484-4.484.707.708-5.191 5.192a1 1 0 01-1.414 0L4.809 8.256z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px;
    font-family: montserrat, sans-serif;
    font-size: 14px
}

.custom-select-option {
    font-size: 1px;
}

.custom-select:focus {
    outline: none;
    border-color: #2563eb; /* blue-600 */
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.3);
}

.filter-button {
    background-color: hsl(0deg 0% 96.86%);
    border: 1px solid #ccc;
    border-radius: 7px;
    padding: 2px 12px;
    color: #333;
    font-size: 14px
}


