
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}
body {
    margin-bottom: 60px;
}

.data-scroll {
    position: relative;
    overflow: auto;
    max-width: fit-content;
}

    .data-scroll thead th {
        background-color: lightgray;
        position: sticky;
        top: 0;
        z-index: 1;
    }

.data-scroll-height {
    height: 480px;
}

.clsError {
    color: red;
    font-family: 'Bold';
    font-size: medium;
}
.signup-box {
    max-width: 500px;
    margin: 5rem auto;
    padding: 2rem;
    border-radius: 0.5rem;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.signIn {
    color: #fff;
    background-color: #e47011;
    padding: 8px 15px;
    border-radius: 5px;
    display: inline-block;
}

.login-box {
    max-width: 400px;
    margin: 8rem auto;
    padding: 2rem;
    border-radius: 0.5rem;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
        

#loader {
    display: none;
}

.typescreen-btn {
    padding: 2px 16px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    transition: background-color 0.3s ease;
}
@media (max-width: 767px) {
    .data-scroll-height {
        max-height: 200px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .data-scroll-height {
        max-height: 250px;
    }
}

@media (min-width: 1024px) {
    .data-scroll-height {
        max-height: 480px;
    }
}
.btn-brand {
    color: #fff !important;
    background-color: #e06d12 !important;
    border-color: #e06d12 !important;
}

.custom-accordion-header {
    background-color: #e66900;
    color: white;
    font-weight: bold;
    border-radius: 4px;
    box-shadow: none;
}

    /* Up arrow for expanded state */
    .custom-accordion-header:not(.collapsed)::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 10.5l6.5-6.5 6.5 6.5z'/%3E%3C/svg%3E");
        transform: none; /* No rotation */
    }

    /* Down arrow for collapsed state */
    .custom-accordion-header.collapsed::after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6.5 6.5 6.5-6.5z'/%3E%3C/svg%3E");
        transform: none;
    }

.btn-revoke {
    background: #fbbf84!important;
}