.customer-body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #121218;
    padding: 0;
}

/* Ensure nav links in customer portal get the same styles as admin */
.customer-body .admin-header .main-nav a {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: inline-block;
    opacity: 1 !important;
}

.customer-body .admin-header .main-nav a:hover {
    background: #2c2c3a;
    color: #b48ae5 !important;
}

/* Make sure the customer badge stands out differently from admin */
.customer-body .admin-header .brand .admin-badge {
    background: #2c2c3a;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 400;
    color: #5cda8f; /* Green instead of purple to differentiate */
}

/* Collection credits styling */
.collection-credits {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(157, 109, 222, 0.1);
    border-radius: 20px;
    color: #9d6dde;
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 1rem;
}

.collection-credits i {
    color: #9d6dde;
}

.collection-credits span {
    white-space: nowrap;
}

.custom-dropdown {
   position: relative;
   display: inline-block;

   .nav-link {
       color: #e0e0e0;
       padding: 8px 16px;
       text-decoration: none;
       display: block;
       transition: all 0.2s ease;
       font-weight: 500;
       cursor: pointer;

       &:hover {
           background: #2c2c3a;
           color: #b48ae5;
       }
   }

   .dropdown-content {
       display: none;
       position: absolute;
       background-color: #2c2c3a;
       min-width: 180px;
       box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
       z-index: 1000;
       border-radius: 6px;
       border: 1px solid rgba(255, 255, 255, 0.1);
       overflow: hidden;

       a {
           color: #e0e0e0;
           padding: 10px 16px;
           text-decoration: none;
           display: block;
           transition: all 0.2s ease;
           font-weight: 500;

           &:hover {
               background-color: rgba(157, 109, 222, 0.2);
               color: #ffffff;
           }
       }
   }

   &:hover .dropdown-content {
       display: block;
   }
}

.admin-header {
   background-color: #1a1a2e;
   padding: 1rem;
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

   .header-content {
       display: flex;
       justify-content: space-between;
       align-items: center;
       max-width: 1200px;
       margin: 0 auto;
   }

   .brand {
       display: flex;
       align-items: center;
       gap: 1rem;

       h1 {
           margin: 0;
           color: #fff;
           font-size: 1.5rem;
       }

       .admin-badge {
           background-color: rgba(255, 255, 255, 0.1);
           padding: 0.25rem 0.5rem;
           border-radius: 4px;
           font-size: 0.875rem;
           color: #fff;
       }
   }

   .main-nav {
       display: flex;
       align-items: center;
       gap: 1rem;

       a {
           color: #fff;
           text-decoration: none;
           padding: 0.5rem 1rem;
           border-radius: 4px;
           transition: background-color 0.2s;

           &:hover {
               background-color: rgba(255, 255, 255, 0.1);
           }

           &.active {
               background-color: rgba(255, 255, 255, 0.2);
           }
       }

       /*.sign-out-button {*/
       /*    background: none;*/
       /*    border: none;*/
       /*    color: #fff;*/
       /*    cursor: pointer;*/
       /*    padding: 0.5rem 1rem;*/
       /*    border-radius: 4px;*/
       /*    transition: background-color 0.2s;*/

       /*    &:hover {*/
       /*        background-color: rgba(255, 255, 255, 0.1);*/
       /*    }*/
       /*}*/
   }
}

.help-video-modal {
    max-width: 90vw !important;
    margin: 1.75rem auto;
}

.help-video-modal .modal-content {
    max-height: 90vh;
}

.help-video-modal .modal-body {
    padding: 1rem;
}

.help-video-modal .ratio {
    max-height: calc(90vh - 120px);
}

.help-video-modal video {
    max-height: 100%;
    width: auto;
    margin: 0 auto;
}

