/* Extracted from newlook-ui-cleaned.css: newlook-core.css */

/* ==========================================================
   PICC Excellence New Look UI

   Shared styling for administrative and non-course PHP pages.

   Course content, tests, and evaluations continue to use
   account_center/modern-course-ui.css.
   ========================================================== */
   /* ==========================================================
   Shared Design Variables
   ========================================================== */

.newlook-ui {
    --newlook-bg: #020d1f;
    --newlook-bg-deep: #010817;
    --newlook-sidebar: #03152c;
    --newlook-panel: #06172f;

    --newlook-blue: #1388ff;
    --newlook-blue-dark: #0754c7;
    --newlook-text: #f4f7fb;
    --newlook-muted: #aebace;
    --newlook-border: rgba(79, 147, 214, 0.34);

    min-height: 100vh;
    margin: 0;
    color: var(--newlook-text);
    background:
        radial-gradient(
            circle at 72% 35%,
            rgba(0, 91, 196, 0.18),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            var(--newlook-bg-deep) 0%,
            var(--newlook-bg) 58%,
            #031a38 100%
        );
    font-family: "Public Sans", Arial, Helvetica, sans-serif;
}

.newlook-ui *,
.newlook-ui *::before,
.newlook-ui *::after {
    box-sizing: border-box;
}

.newlook-ui a {
    color: inherit;
}

.newlook-ui img {
    display: block;
    max-width: 100%;
    height: auto;
}


/* ==========================================================
   Main Page Structure
   ========================================================== */

.newlook-ui .newlook-shell {
    display: grid;
    grid-template-columns: 256px minmax(0, 1fr);
    min-height: 100vh;
}

.newlook-ui .newlook-main {
    min-width: 0;
    min-height: 100vh;
}

.newlook-ui .newlook-login-content {
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 56px 64px 48px;
}


/* ==========================================================
   Sidebar
   ========================================================== */

.newlook-ui .newlook-sidebar {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 28px 15px 30px;
    background:
        linear-gradient(
            180deg,
            rgba(3, 25, 54, 0.99),
            rgba(2, 15, 34, 0.99)
        );
    border-right: 1px solid rgba(104, 160, 215, 0.2);
}

.newlook-ui .newlook-sidebar-brand {
    padding: 0 18px 28px;
    text-align: center;
    border-bottom: 1px solid rgba(132, 176, 219, 0.25);
}

.newlook-ui .newlook-sidebar-logo {
    width: 180px;
    margin: 0 auto 20px;
}

.newlook-ui .newlook-sidebar-title {
    margin: 0;
    color: #2d9cff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}


/* ==========================================================
   Sidebar Navigation
   ========================================================== */

.newlook-ui .newlook-sidebar-nav {
    display: grid;
    gap: 12px;
    padding: 30px 0;
}

.newlook-ui .newlook-sidebar-link {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 60px;
    padding: 14px 22px;
    color: #f1f5fa;
    font-size: 18px;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 8px;
    transition:
        background-color 160ms ease,
        border-color 160ms ease,
        color 160ms ease;
}

.newlook-ui .newlook-sidebar-link i {
    width: 26px;
    color: #d8e5f3;
    font-size: 22px;
    text-align: center;
}

.newlook-ui .newlook-sidebar-link:hover {
    color: #ffffff;
    background: rgba(20, 94, 184, 0.28);
    border-color: rgba(40, 137, 255, 0.4);
}

.newlook-ui .newlook-sidebar-link.is-active {
    color: #ffffff;
    background:
        linear-gradient(
            180deg,
            rgba(10, 76, 177, 0.9),
            rgba(5, 47, 118, 0.9)
        );
    border-color: rgba(35, 137, 255, 0.7);
}

.newlook-ui .newlook-sidebar-link.is-active i {
    color: #ffffff;
}


/* ==========================================================
   Sidebar Security Message
   ========================================================== */

.newlook-ui .newlook-sidebar-security {
    display: flex;
    gap: 14px;
    margin-top: auto;
    padding: 24px 18px 0;
    color: var(--newlook-muted);
    border-top: 1px solid rgba(132, 176, 219, 0.25);
}

.newlook-ui .newlook-sidebar-security > i {
    margin-top: 3px;
    color: #2898ff;
    font-size: 27px;
}

.newlook-ui .newlook-sidebar-security strong {
    display: block;
    margin-bottom: 7px;
    color: #269bff;
    font-size: 16px;
}

.newlook-ui .newlook-sidebar-security p {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
}


/* ==========================================================
   Responsive Foundation
   ========================================================== */

@media (max-width: 900px) {
    .newlook-ui .newlook-shell {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-sidebar {
        min-height: auto;
    }

    .newlook-ui .newlook-sidebar-nav {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .newlook-ui .newlook-sidebar-security {
        display: none;
    }

    .newlook-ui .newlook-login-content {
        padding: 36px 24px;
    }
}

@media (max-width: 600px) {
    .newlook-ui .newlook-sidebar-nav {
        grid-template-columns: 1fr;
    }

    .newlook-ui .newlook-login-content {
        padding: 28px 16px;
    }
}

/* ==========================================================
   New Look Footer
   ========================================================== */

.newlook-ui .footer-container {
    clear: both;
    width: 100%;
    margin: 0;
    color: #ffffff;
    background:
        linear-gradient(
            180deg,
            #03152c 0%,
            #020d1f 100%
        );
    border-top: 1px solid rgba(84, 146, 209, 0.35);
}

.newlook-ui .footer-grid {
    color: #ffffff;
}

.newlook-ui .footer-container .footerItem,
.newlook-ui .footer-container .footerItem1,
.newlook-ui .footer-container .footerItem2,
.newlook-ui .footer-container .footerItem3,
.newlook-ui .footer-container .footerItem4 {
    color: #ffffff;
}

.newlook-ui .footer-container p,
.newlook-ui .footer-container li,
.newlook-ui .footer-container span {
    color: #ffffff;
}

.newlook-ui .footer-container .footerTitle {
    color: #ffffff;
    font-weight: 700;
}

.newlook-ui .footer-container a {
    color: #ffffff;
    text-decoration: none;
}

.newlook-ui .footer-container a:hover {
    color: #35a3ff;
    text-decoration: underline;
}

.newlook-ui .footer-container .footerList {
    color: #ffffff;
}

.newlook-ui .footer-container .footerList li {
    color: #ffffff;
}

.newlook-ui .footer-container .footerList a {
    color: #ffffff;
}

.newlook-ui .footerBottom {
    color: #ffffff;
    background: #010817;
    border-top: 1px solid rgba(84, 146, 209, 0.28);
}

.newlook-ui .footerBottom .footerText {
    color: #ffffff;
}

.newlook-ui .footerItem4 p,
.newlook-ui .footerItem4 a {
    color: #ffffff;
}
/* Force the main footer area to use the new dark background */

.newlook-ui footer.footer-container {
    background:
        linear-gradient(
            180deg,
            #03152c 0%,
            #020d1f 100%
        ) !important;
}

.newlook-ui footer.footer-container .footer-grid {
    background: transparent !important;
}

.newlook-ui footer.footer-container .footerItem,
.newlook-ui footer.footer-container .footerItem1,
.newlook-ui footer.footer-container .footerItem2,
.newlook-ui footer.footer-container .footerItem3,
.newlook-ui footer.footer-container .footerItem4 {
    color: #ffffff !important;
    background: transparent !important;
}

.newlook-ui footer.footer-container p,
.newlook-ui footer.footer-container li,
.newlook-ui footer.footer-container a,
.newlook-ui footer.footer-container .footerTitle {
    color: #ffffff !important;
}

/* ==========================================================
   PUBLIC HEADER
   ========================================================== */

.newlook-ui .newlook-public-header {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background:
        linear-gradient(
            180deg,
            rgba(2, 10, 24, 0.98),
            rgba(2, 12, 28, 0.94)
        );
    border-bottom: 1px solid rgba(64, 137, 210, 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.newlook-ui .newlook-public-header__inner {
    display: grid;
    grid-template-columns: minmax(280px, auto) minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    width: min(100%, 1580px);
    min-height: 90px;
    margin: 0 auto;
    padding: 14px 34px;
}

.newlook-ui .newlook-public-brand {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 18px;
    color: #ffffff;
    text-decoration: none;
}

.newlook-ui .newlook-public-brand img {
    display: block;
    width: 116px;
    height: auto;
}

.newlook-ui .newlook-public-brand span {
    padding-left: 18px;
    color: #24a8ff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.07em;
    line-height: 1.35;
    text-transform: uppercase;
    border-left: 1px solid rgba(72, 141, 203, 0.32);
}

.newlook-ui .newlook-public-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 28px;
    align-items: center;
    justify-content: flex-end;
}

.newlook-ui .newlook-public-navigation a {
    position: relative;
    display: inline-flex;
    min-height: 40px;
    padding: 8px 0;
    align-items: center;
    color: #d8e3ee;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition:
        color 150ms ease,
        text-shadow 150ms ease;
}

.newlook-ui .newlook-public-navigation a::after {
    position: absolute;
    right: 0;
    bottom: 1px;
    left: 0;
    height: 2px;
    content: "";
    background: #168dff;
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 150ms ease;
}

.newlook-ui .newlook-public-navigation a:hover,
.newlook-ui .newlook-public-navigation a:focus-visible,
.newlook-ui .newlook-public-navigation a.is-active {
    color: #ffffff;
    outline: none;
    text-shadow: 0 0 14px rgba(44, 164, 255, 0.24);
}

.newlook-ui .newlook-public-navigation a:hover::after,
.newlook-ui .newlook-public-navigation a:focus-visible::after,
.newlook-ui .newlook-public-navigation a.is-active::after {
    transform: scaleX(1);
}

.newlook-ui .newlook-public-menu-toggle {
    display: none;
    width: 46px;
    height: 42px;
    padding: 0;
    place-items: center;
    color: #ffffff;
    cursor: pointer;
    background: rgba(4, 40, 82, 0.7);
    border: 1px solid rgba(55, 153, 234, 0.45);
    border-radius: 8px;
}

.newlook-ui .newlook-public-menu-toggle i {
    font-size: 18px;
}



/* ==========================================================
   PUBLIC ACCOUNT DROPDOWN
   ========================================================== */

.newlook-ui .newlook-public-account-menu {
    position: relative;
    margin: 0;
}

.newlook-ui .newlook-public-account-menu summary {
    display: inline-flex;
    min-height: 44px;
    padding: 10px 12px;
    align-items: center;
    gap: 8px;
    color: #dce9f4;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    list-style: none;
    cursor: pointer;
    border-radius: 7px;
    transition:
        color 150ms ease,
        background-color 150ms ease;
}

.newlook-ui .newlook-public-account-menu summary::-webkit-details-marker {
    display: none;
}

.newlook-ui .newlook-public-account-menu summary::marker {
    display: none;
    content: "";
}

.newlook-ui .newlook-public-account-menu summary:hover,
.newlook-ui .newlook-public-account-menu summary:focus-visible,
.newlook-ui .newlook-public-account-menu[open] summary {
    color: #ffffff;
    background: rgba(16, 111, 207, 0.24);
    outline: none;
}

.newlook-ui
.newlook-public-account-menu__arrow {
    margin-left: 2px;
    font-size: 10px;
    transition: transform 160ms ease;
}

.newlook-ui
.newlook-public-account-menu[open]
.newlook-public-account-menu__arrow {
    transform: rotate(180deg);
}


/* Dropdown panel */

.newlook-ui .newlook-public-account-dropdown {
    position: absolute;
    z-index: 1000;
    top: calc(100% + 12px);
    right: 0;
    display: grid;
    width: 275px;
    padding: 8px;
    background:
        linear-gradient(
            145deg,
            rgba(7, 35, 71, 0.99),
            rgba(2, 18, 40, 0.99)
        );
    border: 1px solid rgba(65, 149, 220, 0.55);
    border-radius: 10px;
    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.newlook-ui .newlook-public-account-dropdown::before {
    position: absolute;
    top: -7px;
    right: 23px;
    width: 12px;
    height: 12px;
    content: "";
    background: #06264d;
    border-top: 1px solid rgba(65, 149, 220, 0.55);
    border-left: 1px solid rgba(65, 149, 220, 0.55);
    transform: rotate(45deg);
}

.newlook-ui .newlook-public-account-dropdown a {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    min-height: 47px;
    padding: 10px 12px;
    align-items: center;
    color: #dce9f4;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 7px;
    transition:
        color 150ms ease,
        background-color 150ms ease,
        transform 150ms ease;
}

.newlook-ui .newlook-public-account-dropdown a i {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    color: #2ba8ff;
    background: rgba(8, 87, 170, 0.24);
    border: 1px solid rgba(41, 153, 239, 0.32);
    border-radius: 7px;
}

.newlook-ui .newlook-public-account-dropdown a:hover,
.newlook-ui .newlook-public-account-dropdown a:focus-visible {
    color: #ffffff;
    background: rgba(15, 104, 197, 0.28);
    outline: none;
    transform: translateX(2px);
}


/* Mobile dropdown */

@media (max-width: 780px) {

    .newlook-ui .newlook-public-account-menu {
        width: 100%;
    }

    .newlook-ui .newlook-public-account-menu summary {
        width: 100%;
        justify-content: flex-start;
    }

    .newlook-ui
    .newlook-public-account-menu__arrow {
        margin-left: auto;
    }

    .newlook-ui .newlook-public-account-dropdown {
        position: static;
        width: 100%;
        margin-top: 5px;
        box-shadow: none;
    }

    .newlook-ui .newlook-public-account-dropdown::before {
        display: none;
    }

}
/* Certifications links that are not active yet */

.newlook-ui
.newlook-public-certifications-menu
.newlook-public-account-dropdown
a.is-disabled {
    opacity: 0.52;
    cursor: default;
    pointer-events: none;
}

.newlook-ui
.newlook-public-certifications-menu
.newlook-public-account-dropdown
a.is-disabled:hover {
    background: transparent;
    transform: none;
}

/* ==========================================================
   PUBLIC SHOPPING CART LINK
   ========================================================== */

.newlook-ui .newlook-public-cart-link {
    display: inline-flex;
    min-height: 44px;
    padding: 10px 12px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #dce9f4;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    border-radius: 7px;
    transition:
        color 150ms ease,
        background-color 150ms ease;
}

.newlook-ui .newlook-public-cart-link i {
    color: #2ba8ff;
    font-size: 17px;
}

.newlook-ui .newlook-public-cart-link:hover,
.newlook-ui .newlook-public-cart-link:focus-visible {
    color: #ffffff;
    background: rgba(16, 111, 207, 0.24);
    outline: none;
}

@media (max-width: 1100px) {
    .newlook-ui .newlook-public-cart-link {
        width: 100%;
    }
}
/* ==========================================================
   Buttons
   ========================================================== */

.newlook-ui .newlook-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    width: 100%;
    min-height: 56px;
    margin: 0;
    padding: 12px 22px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition:
        background-color 160ms ease,
        border-color 160ms ease,
        box-shadow 160ms ease,
        transform 160ms ease;
}

.newlook-ui .newlook-button:hover {
    transform: translateY(-1px);
}

.newlook-ui .newlook-button-primary {
    background:
        linear-gradient(
            180deg,
            #126fe6 0%,
            #0647ae 100%
        );
    border: 1px solid #1988ff;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 10px 28px rgba(0, 74, 184, 0.24);
}

.newlook-ui .newlook-button-primary:hover {
    background:
        linear-gradient(
            180deg,
            #1989ff 0%,
            #0759cb 100%
        );
}

.newlook-ui .newlook-button-primary:focus-visible,
.newlook-ui .newlook-button-secondary:focus-visible {
    outline: 3px solid rgba(53, 158, 255, 0.42);
    outline-offset: 3px;
}

.newlook-ui .newlook-button-secondary {
    color: #35a3ff;
    background: rgba(1, 13, 31, 0.38);
    border: 1px solid rgba(35, 139, 255, 0.72);
}

.newlook-ui .newlook-button-secondary:hover {
    color: #ffffff;
    background: rgba(12, 75, 153, 0.35);
    border-color: #35a3ff;
}

/* Footer social-media links */

.newlook-ui .footerItem4 .socMedia {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
    align-items: center;
    margin-top: 18px;
}

.newlook-ui .footerItem4 .socMedia a {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.newlook-ui .footerItem4 .socMedia img {
    display: block;
    width: 30px;
    height: 30px;
    margin: 0;
    object-fit: contain;
}

