@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --bg-dark: rgb(49, 49, 49);
    --bg-light: #f0f0f0;

    --primary-color: #d12079;
    --primary-font-color: #2b2b2b;
    --primary-font-color-hover: #1b1b1b;

    --secondary-font-color: #f1f1f1;
    --secondary-font-color-hover: rgb(236, 236, 236);

    --primary-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.font-regular {
    font-family: "Noto Sans", sans-serif !important;
    font-optical-sizing: auto;
    font-weight: 400 !important;
    font-style: normal;
    font-variation-settings:
        "wdth"100;
}

html {

    height: 100%;

    font-size: 15px;

}

body {
    width: 100%;
    height: 100%;
    content: "";
    clear: both;
    box-sizing: border-box;
}

#login-body {
    width: 100%;
    height: 100%;
    content: "";
    clear: both;
    box-sizing: border-box;
    background-color: var(--bg-dark);
}


#login-container {
    min-width: 320px;
    width: auto;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
    padding: 1.4rem 1.2rem;
}

.login-logo-container {
    width: 100%;
    text-align: center;

}

.login-logo-container img {
    height: 130px;
}

.btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
    padding: 9px 9px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.form-control {
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.svg-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    fill: #ffffff;
}

.wrapper {
    display: flex;
    flex-direction: row;
    min-height: 100vh;
    height: 100%;
    overflow-x: hidden;
    width: 100%;
}

.sidebar {
    background-color: var(--bg-dark);
    height: 100vh;
    display: flex;
    flex-direction: column;
    min-width: 320px;
    width: 320px;
    padding: 1rem;
}

.sidebar-inner {
    padding: 1.5rem 1rem;
    background-color: var(--bg-light);
    border-radius: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}


/* top user info block */
.sidebar-inner>.d-flex {
    flex-shrink: 0;
    /* keep it fixed */
}

/* scrollable nav section */
.sidebar-inner>.w-100 {
    flex: 1 1 auto;
    /* take remaining space */
    overflow-y: auto;
    /* enable scroll only here */
    padding-bottom: 1rem;
    /* optional spacing */
}

/* optional styling for nav */
.nav-pills .nav-link {
    color: #333;
    border-radius: 0;
}

.nav-pills .nav-link.active {
    background: #007bff;
    color: #fff;
}

.nav-link {
    color: var(--primary-font-color);
    padding: 0.85rem 1.3rem;
    margin-bottom: 1px;
    transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -webkit-transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -moz-transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -ms-transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
    -o-transition: all 0.3s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.nav-link svg {
    fill: var(--primary-font-color);
}

.nav-link:hover {
    color: var(--secondary-font-color) !important;
    background-color: var(--primary-color) !important;
    border-radius: 9px !important;
    -webkit-border-radius: 9px !important;
    -moz-border-radius: 9px !important;
    -ms-border-radius: 9px !important;
    -o-border-radius: 9px !important;
    box-shadow: var(--primary-box-shadow);

}

.nav-link:hover svg {
    fill: var(--secondary-font-color);
}

.nav-link.active {
    color: var(--secondary-font-color) !important;
    background-color: var(--primary-color) !important;
    border-radius: 9px !important;
    -webkit-border-radius: 9px !important;
    -moz-border-radius: 9px !important;
    -ms-border-radius: 9px !important;
    -o-border-radius: 9px !important;
    box-shadow: var(--primary-box-shadow);
}

.nav-link.active svg {
    fill: var(--secondary-font-color);
}

.nav-svg-icon {
    width: 24px;
    height: 24px;
    margin-right: 6px;
}

/* .user-account-icon {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}


.user-account-icon img {
    object-fit: contain;
} */

.user-account-icon {
  width: 100px;              /* or whatever size you prefer */
  height: 100px;
  border-radius: 50%;        /* makes it circular */
  overflow: hidden;          /* clips the image inside */
  border: 3px solid #ddd;    /* optional border */
}

.user-account-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* ensures image fills circle nicely */
  border-radius: 50%;        /* ensures smooth round edges */
}

.header {
    background-color: var(--bg-light);
    border-radius: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
    margin-bottom: 1.5rem;
}

.main {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    min-height: 100%;
    height: 100%;
    width: 100%;
    padding: 1rem;
    background-color: var(--bg-dark);

}

.main-content {
    background-color: var(--bg-light);
    border-radius: 9px;
    -webkit-border-radius: 9px;
    -moz-border-radius: 9px;
    -ms-border-radius: 9px;
    -o-border-radius: 9px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}
