* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

:root {
    /* BODY THEMES >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
    --body-bg-color: #000000;

    /* ROOT THEMES >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
    --root-bg-color: #373637;
    --root-shadow: -4px 4px 20px rgba(151, 151, 151, 0.7);

    /* NAVBAR THEMES >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
    --navbar-bg-color: #373637;
    --navbar-border-grey: 1px solid rgb(172, 172, 172); 

    /* SIDECARD THEMES >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
    --sidecard-bg-color: #373637;
    --sidecard-border-grey: 1px solid rgb(172, 172, 172); 
    --sidecard-shadow: -4px 4px 10px rgba(151, 151, 151, 0.5);

    /* CONTENT THEMES >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
    --content-bg-color: #373637;
    --content-border-grey: 1px solid rgb(172, 172, 172); 


    /* COMMON THEMES >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
    --text-color: #ffffff;
    --subtext-color: #f5f3f3;
    --microtext-color: #bfbebe;

    --hover-bright: #00bcd4;
    --hover-dark: #555;

}
  
[data-theme="dark"] {
    --body-bg-color: linear-gradient(135deg, #010110, #2c2c5f);
    --sidebar-bg-color: #2c2c5f;

    --normal-text-color: #dbdbdb;

    --sidebar-h4-color: #acacf5;
    --sidebar-nav-text-color: #dbdbdb;
    --sidebar-focus-nav-text-color: #5731ff;
    --sidebar-focus-nav-color: #dbdbdb;
    
    --main-content-header-bg-color: #2c2c5f;
    --main-content-header-text-color: #532ff3;
    --main-content-h2-text-color: #dbdbdb;
    --main-content-h3-text-color: #dbdbdb;

    --notification-icon-bg-color: #dbdbdb;
    --notification-panel-bg-color: #dbdbdb;
    --notification-header-bg-color: #2c2c5f;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}