body {
    font-family: -apple-system, BlinkMacSystemFont, "segoe ui", Roboto, "helvetica neue", Arial, sans-serif, "apple color emoji", "segoe ui emoji", "segoe ui symbol";
    margin: 0;
    font-weight: 400;
    display: flex;
    height: 100vh;
    font-size: 14px;
    /* Adjusted for smaller font */
    overflow-x: hidden;
    /* Prevent horizontal scrolling */
    justify-content: center;
    line-height: 1.5;
    /*    background-image: url("../img/textures.png");*/
    background-color: rgb(47, 53, 58);
    /* Restored original background color */
    background-image:
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 2px, transparent 2px),
        linear-gradient(rgba(0, 0, 0, 0.02) 2px, transparent 2px);
    background-size: 3px 3px;
    /* Adjusts the size of the noise pattern */
    scrollbar-width: thin;
}


.container {
    display: flex;
    flex: 1;
    max-width: 1536px;
    width: 100%;
    height: 100vh;
    background-color: rgb(47, 53, 58);
    /* Restored original dark theme background color */
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
    flex-direction: column;
}

.hover-underline:hover {
    text-decoration: underline;
}


/* Base card styling */
.dcard {
    border-radius: 3px;
    overflow: hidden;
    margin: 5px;
    color: white;
    /* Text color */
    position: relative;
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0);
}

.dcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                rgba(255, 255, 255, 0.15) 0%, 
                rgba(255, 255, 255, 0.08) 30%, 
                transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 10px;
    z-index: 1;
}

.dcard:hover::before {
    opacity: 1;
}

.dcard:hover {
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.3), 
                0 10px 20px -5px rgba(0, 0, 0, 0.2),
                0 0 25px rgba(255, 255, 255, 0.15);
}

/* Enhanced glow effect for dcard */
.dcard:hover::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
                rgba(255, 255, 255, 0.12), 
                rgba(255, 255, 255, 0.06), 
                rgba(255, 255, 255, 0.12));
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    animation: glowPulse 2s ease-in-out infinite;
}

/* Windows-style accent glow for dcard */
.dcard:hover {
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 25px -5px rgba(0, 0, 0, 0.3),
        0 10px 20px -5px rgba(0, 0, 0, 0.2),
        0 0 35px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.dcard-body {
    display: flex;
    justify-content: space-between;
    align-items: right;
    padding: 15px 15px 7px 15px;
    position: relative;
    min-height: 56px;
}

.dcard-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

.dcard-icon {
    font-size: 50px;
    /* Large size for the icon */
    color: rgba(255, 255, 255, 0.3);
    /* Semi-transparent white */
    position: absolute;
    /* top: 10px; */
    right: 20px;
    z-index: 0;
    /* Ensure the icon is behind the text */
}

.dcard-footer {
    background-color: rgba(0, 0, 0, 0.2);
    /* Slightly darker background */
    padding: 7px 15px;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dcard-footer a {
    color: white;
    text-decoration: none;
}

.dcard-footer a:hover {
    text-decoration: underline;
}


.card-blue {
    background-color: #20a8d8;
    /* Blue */
}

.card-blue:hover {
    box-shadow: 0 8px 25px -5px rgba(32, 167, 216, 0.25), 0 10px 20px -5px rgba(32, 168, 216, 0.15),
                0 0 20px rgba(230, 144, 144, 0.2);
}

.card-green {
    background-color: #4dbd74;
    /* Green */
}

.card-green:hover {
    box-shadow: 0 8px 25px -5px rgba(77, 189, 116, 0.25), 0 10px 20px -5px rgba(77, 189, 116, 0.15),
                0 0 20px rgba(230, 144, 144, 0.2);
}

.card-yellow {
    background-color: #ffc107;
    /* Yellow */
}

.card-yellow:hover {
    box-shadow: 0 8px 25px -5px rgba(255, 193, 7, 0.25), 0 10px 20px -5px rgba(255, 193, 7, 0.15),
                0 0 20px rgba(230, 144, 144, 0.2);
}

.card-red {
    background-color: #f86c6b;
    /* Red */
}

.card-red:hover {
    box-shadow: 0 8px 25px -5px rgba(248, 108, 107, 0.25), 0 10px 20px -5px rgba(248, 108, 107, 0.15),
                0 0 20px rgba(230, 144, 144, 0.2);
}

.card-purple {
    background-color: #6f42c1;
    /* Purple */
}

.card-purple:hover {
    box-shadow: 0 8px 25px -5px rgba(111, 66, 193, 0.25), 0 10px 20px -5px rgba(111, 66, 193, 0.15),
                0 0 20px rgba(230, 144, 144, 0.2);
}

.card-orange {
    background-color: #fd7e14;
    /* Orange */
}

.card-orange:hover {
    box-shadow: 0 8px 25px -5px rgba(253, 126, 20, 0.25), 0 10px 20px -5px rgba(253, 126, 20, 0.15),
                0 0 20px rgba(230, 144, 144, 0.2);
}

.card-pink {
    background-color: #e83e8c;
    /* Pink */
}

.card-pink:hover {
    box-shadow: 0 8px 25px -5px rgba(232, 62, 140, 0.25), 0 10px 20px -5px rgba(232, 62, 140, 0.15),
                0 0 20px rgba(230, 144, 144, 0.2);
}

.card-gray {
    background-color: #6c757d;
    /* Gray */
}

.card-gray:hover {
    box-shadow: 0 8px 25px -5px rgba(108, 117, 125, 0.25), 0 10px 20px -5px rgba(108, 117, 125, 0.15),
                0 0 20px rgba(230, 144, 144, 0.2);
}

.card-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2px;
    font-size: 1.05em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
    align-items: center;
}

.card-number {
    font-size: 1.2em;
    font-weight: 600;
    margin-left: 10px;
    padding-right: 2px;
}

input {
    vertical-align: middle;
    margin: auto;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60px;
    /* Height of the footer */
    background: #6cf;
}

.plch-center::-webkit-input-placeholder {
    text-align: center;
}

.plch-center:-moz-placeholder {
    text-align: center;
}


/* scroll bar */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #3a4149;
    border: solid 1px #2f353a;
}

::-webkit-scrollbar-thumb {
    background: #343b41;
    border: solid 1px #2f353a;
}

::-webkit-scrollbar-corner {
    background: #3a4149;
}

::-webkit-scrollbar-track-piece the {
    background: #3a4149;
}

::-webkit-resizer {
    background: #3a4149;
}


/* snavbar */

.navbar {
    overflow: hidden;
    background-color: #3a4149;
    position: fixed;
    display: flex;
    z-index: 9;
    top: 0;
    width: 100%;
    max-width: 1536px;
    height: 50px;
    border-bottom: 1px solid #23282c;
    justify-content: space-between;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.navbar-left a {
    float: left;
    display: block;
    color: rgb(228, 231, 234);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    transition: 0.3s;
}

.navbar-right a {
    float: right;
    display: block;
    color: rgb(228, 231, 234);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.navbar a:hover {
    color: white;
}

.navbar-hover:hover {
    background-color: #2f353a;
}

.stheme,
.connect,
.slang {
    all: unset;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    cursor: pointer;
}



.ses {
    float: right;
    border: none;
    background-color: #3a4149;
    font-size: 14px;
    color: #f2f2f2;
    height: 30px;

}


.dropd {
    float: right;
    border: none;
    background-color: #343b41;
    font-size: 14px;
    color: rgb(228, 231, 234);
    border-radius: 3px;
}

.spa {
    border-bottom: 1px solid #23282c;
}


/* sidenav */

.sidenav {
    height: calc(100% - 50px);
    width: 230px;
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    background-color: #3a4149;
    overflow: hidden;
    margin-top: 50px;
    border-right: 1px solid #23282c;
    transition: 0.5s;
    /* box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1); */
    /* overflow-x: auto; */
    user-select: none;
}

.sidenav-content {
    height: 100%;
    overflow: auto;
}

.sidenav-identity {
    background-color: #3a4149;
    color: #f2f2f2;
    border-bottom: 1px solid #23282c;
    border-top: 1px solid #23282c;
    padding: 5px;
}

.sidenav a,
.dropdown-btn {
    text-decoration: none;
    font-size: 14px;
    color: rgb(228, 231, 234);
    display: block;
    border: none;
    background-color: none;
    width: 90%;
    text-align: left;
    cursor: pointer;
    outline: none;
    transition: 0.5s;
    padding-right: 10px;
    margin: 5px 0px 5px 5px;
}

.sidenav i {
    font-size: 20px;
    margin-right: 2px;
    padding: 7px 0px 7px 7px;
}

.sidenav a:hover,
.dropdown-btn:hover {
    color: #f1f1f1;
    background-color: #20a8d8;
    border-radius: 5px;
}

.active {
    background: #343b41;
    border-radius: 5px;
}

.dropdown-container {
    display: none;
    transition: 0.5s;
}

.dropdown-container i {
    padding-left: 20px;
}

.menu-open {
    display: block;
}

.fa-caret-down {
    float: right;
    color: #ccc;
}

.fa-caret-left {
    float: right;
    color: #ccc;
}

#notify {
    display: none;
    background-color: rgba(58, 65, 73, 0.6);
    color: #ffffff;
    border: 1px solid #c1c1c1;
    position: fixed;
    min-width: 100px;
    top: 55px;
    z-index: 9999;
    left: 50%;
    margin-left: -100px;
    padding: 6px 8px 8px;
    box-sizing: border-box;
    text-align: center;
    border-radius: 3px;
    box-shadow: inset 0 0 0 transparent, 0 0 0 0.2rem rgba(166, 166, 166, 0.15);
}


/* Gaya dasar untuk notifikasi */
.popup-notify {
    position: fixed;
    top: 65px;
    /* right: 10px; */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(58, 65, 73, 0.8);
    color: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: inset 0 0 0 transparent, 0 0 0 0.2rem rgba(166, 166, 166, 0.15);
    display: none;
    z-index: 1000;
}

.popup-notify button {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    margin-left: 10px;
}

#temp {
    display: none;
}



/* wraper */

.wraprer {
    /* position: relative; Tambahkan position relative */
    /* width: 100%; */
    margin-left: 230px;
    height: 100%;
    box-sizing: border-box;
    padding: 0;
    margin-right: 0;
    overflow-y: auto;
    height: calc(100% - 55px);

}


/* main */

#main {
    width: 100%;
    transition: margin-left 0.5s;
    margin-top: 55px;
    padding: 0;
    transition: 0.5s;
    box-sizing: border-box;
    /* Tambahkan box-sizing */
    overflow: auto;
    /* Tambahkan overflow-x hidden */
    height: calc(100vh - 55px);
    
}



/* main */

.main-container {
    padding: 5px 5px 5px 7px;
    width: 100%;
    box-sizing: border-box;
    overflow-y: auto;
    height: 100%;
}


/*barand*/

#brand {
    min-width: 165px;
    font-weight: bold;
    vertical-align: middle;
}

#brand span {
    font-size: 18px;
    line-height: 10%;
}


/* chart */

.chart {
    height: 200px;
    margin: 0 auto
}


/* box */

.box {
    background-color: #3a4149;
    padding: 10px;
    margin: 5px;
    border-radius: 10px;
    color: #f3f4f5;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                rgba(255, 255, 255, 0.1) 0%, 
                rgba(255, 255, 255, 0.05) 30%, 
                transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 10px;
    z-index: 1;
}

.box:hover::before {
    opacity: 1;
}

.box:hover {
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.2), 
                0 10px 20px -5px rgba(0, 0, 0, 0.1),
                0 0 20px rgba(255, 255, 255, 0.1);
}

/* Enhanced glow effect for different box types */
.box:hover::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
                rgba(255, 255, 255, 0.1), 
                rgba(255, 255, 255, 0.05), 
                rgba(255, 255, 255, 0.1));
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
}

/* Windows-style accent glow */
.box:hover {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 25px -5px rgba(0, 0, 0, 0.2),
        0 10px 20px -5px rgba(0, 0, 0, 0.1),
        0 0 30px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.box a {
    color: #f3f4f5;
    text-decoration: none;
}

.box h1,
h3,
h3 {
    padding: 0px;
    margin: 0px;
}

.box-bordered {
    border: 1px solid #383e44;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}


/* box minh-50px*/

.bmh-50 {
    min-height: 50px;
}

.bmh-55 {
    min-height: 55px;
}

.bmh-60 {
    min-height: 60px;
}

.bmh-65 {
    min-height: 65px;
}

.bmh-70 {
    min-height: 70px;
}

.bmh-75 {
    min-height: 75px;
}

.bmh-80 {
    min-height: 80px;
}

.bmh-85 {
    min-height: 85px;
}

.bmh-90 {
    min-height: 90px;
}

.bmh-95 {
    min-height: 95px;
}

.bmh-100 {
    min-height: 100px;
}

.box-group>div {
    display: table-cell;
    vertical-align: middle;
}

.box-group-icon {
    font-size: 40px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
    width: 25%;
    user-select: none;
    border: 1px solid transparent;
    padding: 5px 10px 5px 10px;
    margin: 5px;
    line-height: 1.5;
    border-radius: 5px;
}

.box-group-area {
    padding: 5px;
}

.login-box {
    width: 300px;
    justify-content: center;
    align-items: center;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #3a4149;
    border-radius: 10px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}

.login-box:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.login-logo {
    position: absolute;
    top: -45px;
    /* Float the logo above the container */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 80px;
    height: 80px;
    background-color: #3a4149;
    border-radius: 25%;
    /* Rounded logo background */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.login-logo:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateX(-50%) scale(1.05);
}

.login-logo img {
    max-width: 100%;
    /* Adjust logo size within the circle */
    height: auto;
}

.login-title {
    font-size: 22px;
    margin-top: 30px;
    /* Extra margin to accommodate for floating logo */
    margin-bottom: 15px;
    padding-bottom: 10px;
    width: 100%;
    text-align: center;
    font-weight: bold;
    border-bottom: 1px solid #c1c1c1;
    color: #f3f4f5;
}

.login-box input[type="text"],
.login-box input[type="password"] {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 14px;
}

.login-box input[type="submit"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 14px;
    cursor: pointer;
}


@media (max-width: 576px) {
    .login-box {
        max-width: 80%;
        margin: 0;
        /* padding: 15px; */
    }
}

.settings {
    width: 66.66%;
    margin-top: 5%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 750px) {
    .settings {
        width: 95%;
        margin-top: 5px;
    }
}


/* card */

.card {
    background-color: #3a4149;
    margin: 5px;
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                rgba(255, 255, 255, 0.08) 0%, 
                rgba(255, 255, 255, 0.03) 40%, 
                transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 10px;
    z-index: 1;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.2), 
                0 10px 20px -5px rgba(0, 0, 0, 0.1),
                0 0 25px rgba(255, 255, 255, 0.08);
}

.card a {
    text-decoration: none;
}

.card h3 {
    margin: 0px;
}

.card-header {
    padding: 5px 10px 5px 10px;
    margin-bottom: 5px;
    border-bottom: 1px solid #30353a;
    background-color: #343b41;
    border-radius: 10px 10px 0 0;
    color: #f3f4f5;

}

.card-body {
    padding: 5px 10px 10px 10px;
    margin-bottom: 10px;
    color: #f3f4f5;
}

.card-footer a {
    padding: 0px 0px 5px 0px;
    margin-top: 5px;
    min-height: 20px;
    border-radius: 0 0 10px 10px;
    color: #f3f4f5;
}

.overflow {
    overflow-x: auto;
    overflow-y: auto;
    max-height: 80vh;
}


/* button */

button {
    text-decoration: none;
    display: inline-block;
    border: none;
    background-color: none;
    font-size: 14px;
    line-height: 1.5;
}

.btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 3px 10px 3px 10px;
    margin: 0 5px 5px 0;
    border-radius: 5px;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

.btn-login {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 3px 10px 3px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.btn-login:hover {
    box-shadow: 0 4px 6px -1px rgba(47, 53, 58, 0.2), 0 2px 4px -1px rgba(47, 53, 58, 0.1);
    transform: translateY(-1px);
}


/* backgound */

[class*="bg-"] {
    text-decoration: none;
}

.bg-primary {
    background-color: #20a8d8;
    color: #f3f4f5;
}

.bg-secondary {
    background-color: #73818f;
    color: #f3f4f5;
}

.bg-success {
    background-color: #4dbd74;
    color: #f3f4f5;
}

.bg-info {
    background-color: #63c2de;
    color: #f3f4f5;
}

.bg-warning {
    background-color: #ffc107;
    color: #f3f4f5;
}

.bg-danger {
    background-color: #f86c6b;
    color: #f3f4f5;
}

.bg-light {
    background-color: #f3f4f5;
    color: #2f353a;
}

.bg-dark {
    background-color: #2f353a;
    color: #f3f4f5;
}

.bg-blue {
    background-color: #20a8d8;
    color: #f3f4f5;
}

.bg-indigo {
    background-color: #6610f2;
    color: #f3f4f5;
}

.bg-purple {
    background-color: #6f42c1;
    color: #f3f4f5;
}

.bg-pink {
    background-color: #e83e8c;
    color: #f3f4f5;
}

.bg-red {
    background-color: #f86c6b;
    color: #f3f4f5;
}

.bg-orange {
    background-color: #f8cb00;
    color: #f3f4f5;
}

.bg-yellow {
    background-color: #ffc107;
    color: #f3f4f5;
}

.bg-green {
    background-color: #4dbd74;
    color: #f3f4f5;
}

.bg-teal {
    background-color: #20c997;
    color: #f3f4f5;
}

.bg-cyan {
    background-color: #17a2b8;
    color: #f3f4f5;
}

.bg-white {
    background-color: #fff;
    color: #2f353a;
}

.bg-grey {
    background-color: #73818f;
    color: #f3f4f5;
}

.bg-grey-dark {
    background-color: #2f353a;
    color: #f3f4f5;
}

.bg-light-blue {
    background-color: #63c2de;
    color: #f3f4f5;
}


/* text */

[class*="text-"] {
    text-decoration: none;
}

.text-primary {
    color: #20a8d8;
}

.text-secondary {
    color: #73818f;
}

.text-success {
    color: #4dbd74;
}

.text-info {
    color: #63c2de;
}

.text-warning {
    color: #ffc107;
}

.text-danger {
    color: #f86c6b;
}

.text-light {
    color: #f3f4f5;
}

.text-dark {
    color: #2f353a;
}

.text-blue {
    color: #20a8d8;
}

.text-indigo {
    color: #6610f2;
}

.text-purple {
    color: #6f42c1;
}

.text-pink {
    color: #e83e8c;
}

.text-red {
    color: #f86c6b;
}

.text-orange {
    color: #f8cb00;
}

.text-yellow {
    color: #ffc107;
}

.text-green {
    color: #4dbd74;
}

.text-teal {
    color: #20c997;
}

.text-cyan {
    color: #17a2b8;
}

.text-white {
    color: #fff;
}

.text-grey {
    color: #73818f;
}

.text-grey-dark {
    color: #2f353a;
}

.text-light-blue {
    color: #63c2de;
}

.text-bold {
    font-weight: bold;
}


/* align */

.align-middle {
    vertical-align: middle;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.text-nowrap {
    white-space: nowrap;
}


/* row */

.row::after {
    content: "";
    clear: both;
    display: table;
}


/* column */

[class*="col-"] {
    float: left;
}

.col-1 {
    width: 8.33%;
}

.col-2 {
    width: 16.66%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33%;
}

.col-5 {
    width: 41.66%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33%;
}

.col-8 {
    width: 66.66%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33%;
}

.col-11 {
    width: 91.66%;
}

.col-12 {
    width: 100%;
}


/*width*/

.w-1 {
    width: 8.33%;
}

.w-2 {
    width: 16.66%;
}

.w-3 {
    width: 25%;
}

.w-4 {
    width: 33.33%;
}

.w-5 {
    width: 41.66%;
}

.w-6 {
    width: 50%;
}

.w-7 {
    width: 58.33%;
}

.w-8 {
    width: 66.66%;
}

.w-9 {
    width: 75%;
}

.w-10 {
    width: 83.33%;
}

.w-11 {
    width: 91.66%;
}

.w-12 {
    width: 100%;
}


/*progress*/

.progress {
    width: 100%;
    background-color: #2f353a;
    border-radius: 5px;
}

.progress-bar {
    height: 10px;
    background-color: #f3f4f5;
    border-radius: 5px;
    max-width: 100%;
}

.progress-bar-blue {
    height: 10px;
    background-color: #20a8d8;
    border-radius: 5px;
    max-width: 100%;
}

.progress-bar-red {
    height: 10px;
    background-color: #f86c6b;
    border-radius: 5px;
    max-width: 100%;
}


/*table*/
.table-container {
    width: 100%;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    border: 1px solid #2f353a;
    /* Restored original border color */
    border-radius: 8px;
}

.table {
    width: 100%;
    border-collapse: collapse !important;
}

.table thead {
    /* border-top: 1px solid #2f353a; */
    position: sticky;
    top: 0;
    background-color: #343b41;
    z-index: 1;
}

.table td,
.table th {
    padding: 5px;
}

.table td,
th,
a {
    color: #f3f4f5;
    text-decoration: none;
}

.table-bordered th,
.table-bordered td {
    border-bottom: 1px solid #2f353a !important;
    border-right: 1px solid #2f353a !important;
    border-left: 1px solid #2f353a !important;
    /* Restored original border colors */
}

.table-hover:hover tbody tr:hover {
    background-color: #343b41;
}

.tscroll tbody {
    display: block;
    overflow: auto;
    height: 70vh;
}

.tscroll thead {
    position: relative;
    display: block;
}


/*input group*/

.input-group::after {
    content: "";
    clear: both;
    display: table;
}

[class*="input-group-"] {
    float: left;
}

.input-group-1 {
    width: 8.33%;
}

.input-group-2 {
    width: 16.66%;
}

.input-group-3 {
    width: 25%;
}

.input-group-4 {
    width: 33.33%;
}

.input-group-5 {
    width: 41.66%;
}

.input-group-6 {
    width: 50%;
}

.input-group-7 {
    width: 58.33%;
}

.input-group-8 {
    width: 66.66%;
}

.input-group-9 {
    width: 75%;
}

.input-group-10 {
    width: 83.33%;
}

.input-group-11 {
    width: 91.66%;
}

.input-group-12 {
    width: 100%;
}

.group-item {
    display: block;
    width: 100%;
    border: 1px solid #23282c;
    color: #f3f4f5;
    font-size: 14px;
    padding: 5px;
    background-color: #2f353a;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.group-item-l {
    border-radius: 3px 0pc 0pc 3px;
}

.group-item-r {
    border-radius: 0px 3px 3px 0px;
}

.group-item-md {
    border-radius: none;
}

.group-item:focus {
    color: #f3f4f5;
    border-color: #80bdff;
    outline: 0;
    box-shadow: inset 0 0 0 transparent, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.group-item::placeholder {
    color: #f3f4f5;
    opacity: 1;
}

.radius-l-3 {
    border-radius: 3px 0pc 0pc 3px;
}

.radius-r-3 {
    border-radius: 0px 3px 3px 0px;
}

.radius-b-3 {
    border-radius: 0px 0px 3px 3px;
}

.radius-3 {
    border-radius: 3px;
}

.radius-l-5 {
    border-radius: 5px 0pc 0pc 5px;
}

.radius-r-5 {
    border-radius: 0px 5px 5px 0px;
}

.radius-5 {
    border-radius: 5px;
}


/* alert */

.alert {
    width: 100%;
    padding: 5px 0px 5px 0px;
    border-radius: 3px;
}


/*padding*/

.pd-2 {
    padding: 2px;
}

.pd-2p5 {
    padding: 2.5px;
}

.pd-3 {
    padding: 3px;
}

.pd-3p5 {
    padding: 3.5px;
}

.pd-4 {
    padding: 4px;
}

.pd-4p5 {
    padding: 4.5px;
}

.pd-5 {
    padding: 5px;
}

.pd-5p5 {
    padding: 5.5px;
}

.pd-6 {
    padding: 6px;
}

.pd-7 {
    padding: 7px;
}

.pd-8 {
    padding: 8px;
}

.pd-9 {
    padding: 9px;
}

.pd-10 {
    padding: 10px;
}

.pd-t-2 {
    padding-top: 2px;
}

.pd-t-3 {
    padding-top: 3px;
}

.pd-t-4 {
    padding-top: 4px;
}

.pd-t-5 {
    padding-top: 5px;
}

.pd-t-6 {
    padding-top: 6px;
}

.pd-t-7 {
    padding-top: 7px;
}

.pd-t-8 {
    padding-top: 8px;
}

.pd-t-9 {
    padding-top: 9px;
}

.pd-t-10 {
    padding-top: 10px;
}

.pd-b-2 {
    padding-bottom: 2px;
}

.pd-b-3 {
    padding-bottom: 3px;
}

.pd-b-4 {
    padding-bottom: 4px;
}

.pd-b-5 {
    padding-bottom: 5px;
}

.pd-b-6 {
    padding-bottom: 6px;
}

.pd-b-7 {
    padding-bottom: 7px;
}

.pd-b-8 {
    padding-bottom: 8px;
}

.pd-b-9 {
    padding-bottom: 9px;
}

.pd-b-10 {
    padding-bottom: 10px;
}

.pd-r-2 {
    padding-right: 2px;
}

.pd-r-3 {
    padding-right: 3px;
}

.pd-r-4 {
    padding-right: 4px;
}

.pd-r-5 {
    padding-right: 5px;
}

.pd-r-6 {
    padding-right: 6px;
}

.pd-r-7 {
    padding-right: 7px;
}

.pd-r-8 {
    padding-right: 8px;
}

.pd-r-9 {
    padding-right: 9px;
}

.pd-r-10 {
    padding-right: 10px;
}

.pd-l-2 {
    padding-left: 2px;
}

.pd-l-3 {
    padding-left: 3px;
}

.pd-l-4 {
    padding-left: 4px;
}

.pd-l-5 {
    padding-left: 5px;
}

.pd-l-6 {
    padding-left: 6px;
}

.pd-l-7 {
    padding-left: 7px;
}

.pd-l-8 {
    padding-left: 8px;
}

.pd-l-9 {
    padding-left: 9px;
}

.pd-l-10 {
    padding-left: 10px;
}


/*margin*/

.mr-a {
    margin: auto;
}

.mr-2 {
    margin: 2px;
}

.mr-2 {
    margin: 2px;
}

.mr-3 {
    margin: 3px;
}

.mr-4 {
    margin: 4px;
}

.mr-5 {
    margin: 5px;
}

.mr-6 {
    margin: 6px;
}

.mr-7 {
    margin: 7px;
}

.mr-8 {
    margin: 8px;
}

.mr-9 {
    margin: 9px;
}

.mr-10 {
    margin: 10px;
}

.mr-t-2 {
    margin-top: 2px;
}

.mr-t-3 {
    margin-top: 3px;
}

.mr-t-4 {
    margin-top: 4px;
}

.mr-t-5 {
    margin-top: 5px;
}

.mr-t-6 {
    margin-top: 6px;
}

.mr-t-7 {
    margin-top: 7px;
}

.mr-t-8 {
    margin-top: 8px;
}

.mr-t-9 {
    margin-top: 9px;
}

.mr-t-10 {
    margin-top: 10px;
}

.mr-b-2 {
    margin-bottom: 2px;
}

.mr-b-3 {
    margin-bottom: 3px;
}

.mr-b-4 {
    margin-bottom: 4px;
}

.mr-b-5 {
    margin-bottom: 5px;
}

.mr-b-6 {
    margin-bottom: 6px;
}

.mr-b-7 {
    margin-bottom: 7px;
}

.mr-b-8 {
    margin-bottom: 8px;
}

.mr-b-9 {
    margin-bottom: 9px;
}

.mr-b-10 {
    margin-bottom: 10px;
}

.mr-r-2 {
    margin-right: 2px;
}

.mr-r-3 {
    margin-right: 3px;
}

.mr-r-4 {
    margin-right: 4px;
}

.mr-r-5 {
    margin-right: 5px;
}

.mr-r-6 {
    margin-right: 6px;
}

.mr-r-7 {
    margin-right: 7px;
}

.mr-r-8 {
    margin-right: 8px;
}

.mr-r-9 {
    margin-right: 9px;
}

.mr-r-10 {
    margin-right: 10px;
}

.mr-l-2 {
    margin-left: 2px;
}

.mr-l-3 {
    margin-left: 3px;
}

.mr-l-4 {
    margin-left: 4px;
}

.mr-l-5 {
    margin-left: 5px;
}

.mr-l-6 {
    margin-left: 6px;
}

.mr-l-7 {
    margin-left: 7px;
}

.mr-l-8 {
    margin-left: 8px;
}

.mr-l-9 {
    margin-left: 9px;
}

.mr-l-10 {
    margin-left: 10px;
}


/*pointer*/

.pointer {
    cursor: pointer;
}


/*form control*/

.form-control {
    display: block;
    width: 100%;
    padding: 5px;
    border: 1px solid #23282c;
    /* Restored original dark theme border */
    border-radius: 3px;
    color: #f3f4f5;
    /* Restored original dark theme text color */
    font-size: 14px;
    background-color: #2f353a;
    /* Restored original dark theme background */
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.form-control:focus {
    color: #f3f4f5;
    /* Restored original dark theme text color */
    border-color: #80bdff;
    outline: 0;
    box-shadow: inset 0 0 0 transparent, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    /* Restored original focus shadow */
}

.form-control::placeholder {
    color: #f3f4f5;
    /* Restored original dark theme placeholder color */
    opacity: 1;
}

.modal-window {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.15);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 5px;
}

.modal-window:target {
    opacity: 1;
    pointer-events: auto;
}

.modal-window>div {
    width: 33.33%;
    position: relative;
    margin: 10% auto;
    padding: 1rem;
    background: #3a4149;
    color: #f3f4f5;
    border-radius: 3px;
    border: 1px solid #23282c;
}

.modal-window header {
    font-weight: bold;
}

.modal-close {
    color: #2f353a;
    line-height: 25px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 50px;
    text-decoration: none;
    background-color: #f86c6b;
    border-top-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.modal-close:hover {
    color: #fff;
}

.modal-window h1 {
    font-size: 150%;
    margin: 0 0 15px;
}


/* The Modal (background) */

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 9999;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}


/* Modal Content */

.modal-content {
    position: relative;
    background-color: #2d343a;
    /* Restored original dark theme background */
    margin: auto;
    padding: 0;
    border: 1px solid #23282c;
    /* Restored original dark theme border */
    border-radius: 10px;
    max-width: 400px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    /* Restored original shadow */
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.2s;
    animation-name: animatetop;
    animation-duration: 0.2s
}

.modal-content-report {
    position: relative;
    background-color: #2d343a;
    /* Restored original dark theme background */
    margin: auto;
    padding: 0;
    border: 1px solid #23282c;
    /* Restored original dark theme border */
    border-radius: 10px;
    max-width: 1024px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    /* Restored original shadow */
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.2s;
    animation-name: animatetop;
    animation-duration: 0.2s
}

@media (max-width: 1024px) {
    .modal-content-report {
        width: 90%;
    }
}


/* Add Animation */

@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}


/* The Close Button */

.close {
    color: #f3f4f5;
    float: right;
    margin-top: 3px;
    margin-right: 10px;
    font-size: 24px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #f86c6b;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 10px 10px 5px 10px;
    background-color: transparent;
    color: #f3f4f5;
    vertical-align: top;
    border-bottom: 1px solid #23282c;
}

.modal-body {
    padding: 10px;
    background-color: #3a4149;
    color: #f3f4f5;
}

.modal-footer {
    padding: 5px 10px 10px 10px;
    background-color: transparent;
    color: #f3f4f5;
    border-top: 1px solid #23282c;
}


/* @media */

@media screen and (min-width: 750px) {
    .sidenav {
        width: 230px;
        position: absolute;
    }

    #main {
        margin-left: 230px;
    }

    #main-container {
        width: calc(100% - 230px);
    }

    #openNav {
        display: none;
    }

    #closeNav {
        display: block;
    }

    #shareWA {
        display: none;
    }
}

@media screen and (max-width: 750px) {
    .sidenav {
        width: 0;
        position: fixed;
        /* border-right: 0; */
    }

    #cpage {
        display: none;
    }

    #main {
        margin-left: 0px;
    }

    #main-container {
        width: 100%;
    }

    #openNav {
        display: block;
    }

    #closeNav {
        display: none;
    }

    #brand {
        display: none;
    }

    #shareWA {
        display: inline-block;
    }

    .modal-window>div {
        width: 80%;
    }

    [class*="col-"] {
        width: 100%;
    }

    .col-box-1 {
        width: 8.33%;
    }

    .col-box-2 {
        width: 16.66%;
    }

    .col-box-3 {
        width: 25%;
    }

    .col-box-4 {
        width: 33.33%;
    }

    .col-box-5 {
        width: 41.66%;
    }

    .col-box-6 {
        width: 50%;
    }

    .col-box-7 {
        width: 58.33%;
    }

    .col-box-8 {
        width: 66.66%;
    }

    .col-box-9 {
        width: 75%;
    }

    .col-box-10 {
        width: 83.33%;
    }

    .col-box-11 {
        width: 91.66%;
    }

    .col-box-12 {
        width: 100%;
    }

    /* Hide scrollbar for Chrome, Safari and Opera */
    ::-webkit-scrollbar {
        display: none;
    }

    /* Hide scrollbar for IE, Edge and Firefox */
    * {
        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }
}

.lds-dual-ring {
    display: inline-block;
    width: 64px;
    height: 64px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
}

.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 46px;
    height: 46px;
    margin: 1px;
    border-radius: 50%;
    border: 5px solid rgb(228, 231, 234);
    border-color: rgb(228, 231, 234) transparent rgb(228, 231, 234) transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/*
  
      Name:       material
      Author:     Michael Kaminsky (http://github.com/mkaminsky11)
  
      Original material color scheme by Mattia Astorino (https://github.com/equinusocio/material-theme)
  
  */

.cm-s-material.CodeMirror {
    background-color: #263238;
    color: rgba(233, 237, 237, 1);
}

.cm-s-material .CodeMirror-gutters {
    background: #263238;
    color: rgb(83, 127, 126);
    border: none;
}

.cm-s-material .CodeMirror-guttermarker,
.cm-s-material .CodeMirror-guttermarker-subtle,
.cm-s-material .CodeMirror-linenumber {
    color: rgb(83, 127, 126);
}

.cm-s-material .CodeMirror-cursor {
    border-left: 1px solid #f8f8f0;
}

.cm-s-material div.CodeMirror-selected {
    background: rgba(255, 255, 255, 0.15);
}

.cm-s-material.CodeMirror-focused div.CodeMirror-selected {
    background: rgba(255, 255, 255, 0.10);
}

.cm-s-material .CodeMirror-line::selection,
.cm-s-material .CodeMirror-line>span::selection,
.cm-s-material .CodeMirror-line>span>span::selection {
    background: rgba(255, 255, 255, 0.10);
}

.cm-s-material .CodeMirror-line::-moz-selection,
.cm-s-material .CodeMirror-line>span::-moz-selection,
.cm-s-material .CodeMirror-line>span>span::-moz-selection {
    background: rgba(255, 255, 255, 0.10);
}

.cm-s-material .CodeMirror-activeline-background {
    background: rgba(0, 0, 0, 0);
}

.cm-s-material .cm-keyword {
    color: rgba(199, 146, 234, 1);
}

.cm-s-material .cm-operator {
    color: rgba(233, 237, 237, 1);
}

.cm-s-material .cm-variable-2 {
    color: #80CBC4;
}

.cm-s-material .cm-variable-3,
.cm-s-material .cm-type {
    color: #82B1FF;
}

.cm-s-material .cm-builtin {
    color: #DECB6B;
}

.cm-s-material .cm-atom {
    color: #F77669;
}

.cm-s-material .cm-number {
    color: #F77669;
}

.cm-s-material .cm-def {
    color: rgba(233, 237, 237, 1);
}

.cm-s-material .cm-string {
    color: #C3E88D;
}

.cm-s-material .cm-string-2 {
    color: #80CBC4;
}

.cm-s-material .cm-comment {
    color: #546E7A;
}

.cm-s-material .cm-variable {
    color: #82B1FF;
}

.cm-s-material .cm-tag {
    color: #80CBC4;
}

.cm-s-material .cm-meta {
    color: #80CBC4;
}

.cm-s-material .cm-attribute {
    color: #FFCB6B;
}

.cm-s-material .cm-property {
    color: #80CBAE;
}

.cm-s-material .cm-qualifier {
    color: #DECB6B;
}

.cm-s-material .cm-variable-3,
.cm-s-material .cm-type {
    color: #DECB6B;
}

.cm-s-material .cm-tag {
    color: rgba(255, 83, 112, 1);
}

.cm-s-material .cm-error {
    color: rgba(255, 255, 255, 1.0);
    background-color: #EC5F67;
}

.cm-s-material .CodeMirror-matchingbracket {
    text-decoration: underline;
    color: white !important;
}

/* Progress bar styles */
.progress-gen {
    height: 5px;
    overflow: hidden;
}

.progress-gen-bar {
    height: 100%;
    transition: width 0.6s ease;
}

/* Striped effect */
.progress-gen-bar-striped {
    background-image: linear-gradient(45deg,
            rgba(255, 255, 255, 0.15) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.15) 75%,
            transparent 75%,
            transparent);
    background-size: 1rem 1rem;
}

/* Animation */
.progress-gen-bar-animated {
    animation: progress-bar-stripes 1s linear infinite;
}

@keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0;
    }

    to {
        background-position: 0 0;
    }
}

/* Popup styles */
.popup {
    display: none;
    /* Initially hidden */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #3E3E3E;
    /* Green background */
    color: #f3f4f5;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    animation: fadeIn 0.5s;
    /* Animation for showing */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.popup.hide {
    display: none;
    /* Hide class */
}

.checkmark {
    display: none;
    /* Initially hidden */
    font-size: 24px;
    /* Size of the checkmark */
    margin-right: 10px;
    text-align: center;
    vertical-align: middle;
    justify-content: center;
    align-items: center;
    /* Space between icon and text */
    /* animation: scaleIn 0.5s forwards; */
    /* Animation for checkmark */
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.blurred-background {
    background: rgba(192, 191, 191, 0.027); /* warna semi-transparan */
    backdrop-filter: blur(10px);          /* efek blur */
    -webkit-backdrop-filter: blur(10px);  /* untuk dukungan di Safari */
}

/* Modern Shadow Utility Classes */
.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-inner {
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

/* Hover effects for shadows */
.shadow-hover {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.shadow-hover:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.shadow-hover-sm:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

/* Colored shadows - Enhanced for dark theme visibility */
.shadow-blue {
    box-shadow: 0 4px 6px -1px rgba(32, 167, 216, 0.801), 0 2px 4px -1px rgba(32, 168, 216, 0.4);
}

.shadow-green {
    box-shadow: 0 4px 6px -1px rgba(77, 189, 116, 0.6), 0 2px 4px -1px rgba(77, 189, 116, 0.4);
}

.shadow-red {
    box-shadow: 0 4px 6px -1px rgba(248, 108, 107, 0.6), 0 2px 4px -1px rgba(248, 108, 107, 0.4);
}

.shadow-yellow {
    box-shadow: 0 4px 6px -1px rgba(255, 193, 7, 0.6), 0 2px 4px -1px rgba(255, 193, 7, 0.4);
}

.shadow-purple {
    box-shadow: 0 4px 6px -1px rgba(111, 66, 193, 0.6), 0 2px 4px -1px rgba(111, 66, 193, 0.4);
}

/* Enhanced hover shadows for dark theme */
.shadow-hover-blue:hover {
    box-shadow: 0 10px 20px -5px rgba(32, 168, 216, 0.7), 0 6px 12px -3px rgba(32, 168, 216, 0.5);
    transform: translateY(-3px);
}

.shadow-hover-green:hover {
    box-shadow: 0 10px 20px -5px rgba(77, 189, 116, 0.7), 0 6px 12px -3px rgba(77, 189, 116, 0.5);
    transform: translateY(-3px);
}

.shadow-hover-red:hover {
    box-shadow: 0 10px 20px -5px rgba(248, 108, 107, 0.7), 0 6px 12px -3px rgba(248, 108, 107, 0.5);
    transform: translateY(-3px);
}

.shadow-hover-yellow:hover {
    box-shadow: 0 10px 20px -5px rgba(255, 193, 7, 0.7), 0 6px 12px -3px rgba(255, 193, 7, 0.5);
    transform: translateY(-3px);
}

.shadow-hover-purple:hover {
    box-shadow: 0 10px 20px -5px rgba(111, 66, 193, 0.7), 0 6px 12px -3px rgba(111, 66, 193, 0.5);
    transform: translateY(-3px);
}

/* Strong glow effects for dark theme */
.glow-blue {
    box-shadow: 0 0 30px rgba(32, 168, 216, 0.8);
}

.glow-green {
    box-shadow: 0 0 30px rgba(77, 189, 116, 0.8);
}

.glow-red {
    box-shadow: 0 0 30px rgba(248, 108, 107, 0.8);
}

.glow-yellow {
    box-shadow: 0 0 30px rgba(255, 193, 7, 0.8);
}

.glow-purple {
    box-shadow: 0 0 30px rgba(111, 66, 193, 0.8);
}

/* Additional strong shadow variants for dark theme */
.shadow-strong-blue {
    box-shadow: 0 6px 12px -2px rgba(32, 168, 216, 0.8), 0 4px 8px -1px rgba(32, 168, 216, 0.6);
}

.shadow-strong-green {
    box-shadow: 0 6px 12px -2px rgba(77, 189, 116, 0.8), 0 4px 8px -1px rgba(77, 189, 116, 0.6);
}

.shadow-strong-red {
    box-shadow: 0 6px 12px -2px rgba(248, 108, 107, 0.8), 0 4px 8px -1px rgba(248, 108, 107, 0.6);
}

.shadow-strong-yellow {
    box-shadow: 0 6px 12px -2px rgba(255, 193, 7, 0.8), 0 4px 8px -1px rgba(255, 193, 7, 0.6);
}

.shadow-strong-purple {
    box-shadow: 0 6px 12px -2px rgba(111, 66, 193, 0.8), 0 4px 8px -1px rgba(111, 66, 193, 0.6);
}

.refresh-report {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.06);
    color: #f3f4f5;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 10px;
    cursor: pointer;
    user-select: none;
}