:root {
    --nice-studio-page-sidebar-width: 240px;
    --nice-studio-page-header-height: 60px;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #fff;
    color: #0f0f0f;
    overflow: hidden;
    box-sizing: border-box;
    height: 100%;
}

a{
    text-decoration: none;
    color: #1a73e7;
    &:hover{
        text-decoration: none;
    }
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 25px;
    height: 56px;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-left, .header-center, .header-right {
    display: flex;
    align-items: center;
}
.header-left, .header-center, .header-right{
    padding-top: 12px;
    padding-bottom: 10px;
}
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: #0f0f0f;
    margin-right: 20px;
}
.menu-toggle > svg{
    width: 24px;
    height: 24px;
    fill: #0f0f0f;
}
.menu-toggle:hover{
    opacity: 0.7;
}

.logo {
    display: flex;
    align-items: center;
    color: #1a73e7;
    position: relative;
    width: 125px;
    height: 46px;
    margin-right: 10px;
}
.logo img{
   width: 100%;
    height: 100%;
    object-fit: contain;
    top: 3px;
    position: relative;
    user-select: none;
    pointer-events: none;
}
.header-center{
    margin-right: 10px;
}
.header-center,
.header-center > form {
    flex-grow: 1;
    max-width: 600px;
    display: flex;
    align-items: center;
}

.header-center input {
    flex-grow: 1;
    padding: 9px 15px;
    outline: none;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-right: none;
    border-radius:  999px 0px 0px 999px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-icon {
    background-color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #e5e5e5;
    outline: none;
    cursor: pointer;
}

.header-icon svg{
    width: 38px;
    height: 38px;
    cursor: pointer;
    fill: #0f0f0f;
}

.create-a-upload-video{
   background-color: #fff;
   border: 1px solid #e5e5e5;
   font-size: 14px;
   font-weight: 500;
   line-height: 17px;
   color: #0f0f0f;
   display: flex;
   align-items: center;
   height: 40px;
   padding: 5px 14px;
   user-select: none;
   border-radius: 999px;
}
.create-a-upload-video:hover{
    border-color: #0f0f0f;
}
.create-a-upload-video > svg{
    background-color: none !important;
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 0;
    transition-duration: 999s;
    margin-right: 7px;
    position: relative;
    top: -0px;
}
.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: -5px;
}

.main-container {
    width: 100%;
    display: flex;
    height: calc(100vh - 56px);
    overflow: hidden;
    background-color: #fff;
}

.sidebar {
    flex: 0 0 240px;
    max-width: 240px;
    width: 100%;
    transition: all 0.3s ease;
    z-index: 1;
    background-color: #fff;
    overflow: hidden;
    overflow-y: auto;
    scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
    scrollbar-width: thin;
}

@media (min-width: 992px) {
    .sidebar::-webkit-scrollbar {
        width: 8px;
        background: transparent;
    }

    .sidebar::-webkit-scrollbar-thumb {
        background-color: transparent;
        border-radius: 10px;
        transition: background-color 0.3s ease;
    }

    .sidebar::-webkit-scrollbar-track {
        background: transparent;
    }

    .sidebar:hover::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.3);
    }

    .sidebar:hover::-webkit-scrollbar-thumb:hover {
        background-color: rgba(0, 0, 0, 0.5);
    }

    .sidebar {
        scrollbar-width: none;
    }

    .sidebar:hover {
        scrollbar-width: thin;
        scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
    }
}

@media (max-width: 991px) {
    .sidebar {
        position: fixed;
        top: 0;
        left: -260px;
        height: 100vh;
        width: 240px;
        background: #fff;
        transition: left 0.3s ease, box-shadow 0.3s ease;
        scrollbar-width: none;
        -ms-overflow-style: none;
        box-shadow: 0 0 0 transparent;
    }
    .menu-toggle{
        margin-right: 10px;
    }
    .sidebar.open {
        left: 0;
        z-index: 9999;
    }

    .sidebar::-webkit-scrollbar {
        display: none;
    }
}

.overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.overlay.show {
    opacity: 1;
    visibility: visible;
}

.sidebar-section {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.sidebar-section:last-child {
    border-bottom: none;
}

.sidebar-section h4 {
    font-size: 16px;
    color: #0f0f0f;
    margin-top: 20px;
    margin-bottom: 10px;
    padding-left: 23px;
    font-weight: 500;
    cursor: default;
    white-space: nowrap;  
    overflow: hidden; 
    text-overflow: ellipsis;
    max-width: 100%;   
    letter-spacing: -0.4px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 14px;
    color: #0f0f0f;
    transition: background 0.2s, padding-left 0.3s ease;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar.full-sidebar .sidebar-item {
    padding-left: 26px;
}

.sidebar-item:hover,
.sidebar-item.active {
    background-color: #f2f2f2;
}

.sidebar-item.active,
.sidebar-item.active span {
    font-weight: 500;
    color: #0f0f0f;
}

.sidebar-item > svg {
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

.sidebar-item span {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.allpages-left-sidebar {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 14px;
    gap: 5px;
    padding-bottom: 10px;
}

.allpages-left-sidebar > a {
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
    color: #606060;
    text-decoration: none;
    margin-bottom: -3px;
}

.allpages-left-sidebar > span {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #909090;
    cursor: default;
}

.nice-watch-for-homepage-channel-avatar {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    user-select: none;
    pointer-events: none;
}

.mini-sidebar {
    max-width: 72px;
    overflow-x: hidden;
}

.mini-sidebar .sidebar-item span,
.mini-sidebar .sidebar-section h4,
.mini-sidebar .subscriptions {
    display: none;
}

.mini-sidebar .sidebar-item {
    justify-content: center;
    flex-direction: column;
    margin-left: 3px;
    gap: 6px;
}

.mini-sidebar .sidebar-item > svg {
    width: 22px;
    height: 22px;
}

.mini-sidebar .sidebar-item.active {
    background-color: #f5f5f5;
}

.sidebar,
.sidebar * {
    -webkit-tap-highlight-color: transparent;
}

.sidebar-item:active {
    background-color: #ededed;
}

.sidebar,
.mini-sidebar {
    border-right: 1px solid #e5e5e5;
}

@media (min-width: 992px) {
    .sidebar {
        position: sticky;
        top: 0;
        height: 100vh;
    }
    .channel-page-general__wrapper{
        width: 100%;
        padding: 20px;
    }
}


.platform-main-content-wrapper {
    flex-grow: 1;
    padding: 10px 0;
    overflow: hidden;
    overflow-y: auto;
    width: 100%;
}

.watching-for-homepage-video-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
    padding: 0px 15px;
}

.nice-watch-homepage-thumbnail-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; 
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid #e5e5e5;
}

.nice-watch-homepage-thumbnail-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.nice-watch-homepage-thumbnail-container:hover .nice-watch-homepage-thumbnail-image {
    transform: scale(1.03);
}

.watching-for-homepage-video-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}

.watching-for-homepage-video-card a {
    text-decoration: none !important;
}

.video-details-watch-for-homepage {
    display: flex;
    gap: 12px;
}

.video-details-watch-for-homepage .nice-watch-for-homepage-channel-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
}

.watch-meta-video-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #0f0f0f;
    margin-bottom: 3px;
}

.watch-meta-channel-name > svg{
    width: 14px;
    height: 14px;
    top: 2px;
    position: relative;
    fill: #606060;
}
.watch-meta-channel-name {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #606060;
}
.leftsidebar-subscription-channel{
    display: flex;
    align-items: center;
}
.leftsidebar-subscription-channel > svg{
    width: 12px;
    height: 12px;
    fill: #606060;
    margin-left: 5px;
}
.nice-channel-subscriber-count{
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    color: #606060;
}
.nice-watch-recomended-target-click{
    text-decoration: none;
    color: #0f0f0f;
    display: flex;
}

@media (max-width: 1200px) {
    .watching-for-homepage-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        top: 56px;
        left: -240px;
        height: calc(100% - 56px);
        z-index: 200;
        transition: left 0.3s ease;
        overflow-y: auto;
    }
    .platform-main-content-wrapper {
        padding: 0;
        padding-bottom: 15px;
        margin-bottom: 50px;
    }
    .nice-watch-homepage-thumbnail-image{
        border-radius: 12px;
    }
    .header{
        padding: 0px 13px;
    }
    .sidebar.open {
        left: 0;
        z-index: 9999;
    }

    .overlay {
        display: none;
        position: fixed;
        top: 56px;
        left: 0;
        width: 100%;
        height: calc(100% - 56px);
        background: rgba(0,0,0,0.4);
        z-index: 1000;
    }

    .overlay.show {
        display: block;
    }

    .header-center {
        display: none;
    }

    .header-right .header-icon:not(:first-child) {
        display: none;
    }

    .watching-for-homepage-video-grid {
        grid-template-columns: 1fr;
        padding: 12px;
    }
}
.watch-meta-video-stats{
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #606060;
}
@media (max-width: 480px) {
    .logo-text {
        display: none;
    }
    
    .platform-main-content-wrapper {
        padding: 0;
        padding-bottom: 8px;
    }
    .header-left, .header-center, .header-right{
        padding-top: 9px;
    }
    .header{
        padding: 0px 7px;
    }
    .sidebar {
        overflow-y: auto;
    }
    .nice-watch-homepage-thumbnail-image {
        border-radius: 12px;
        margin-bottom: 0px;
        height: 250px;
    }
    .nice-watch-homepage-thumbnail-container{
        margin-bottom: 5px;
    }

    .watch-meta-video-title{
        font-weight: 500;
        font-size: 14px;
        margin-bottom: 0px;
    }
    .video-details-watch-for-homepage{
        padding-top: 5px;
        padding-bottom: -0px;
    }
}

.auth-header-btn{
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    color: #0f0f0f;
    padding: 5px 13px;
    background-color: #fff;
    border: 1px solid #c6c6c6;
    text-decoration: none;
    border-radius: 999px;
    transition-duration: 0.2s;
}
.auth-header-btn:hover{
    background-color: #f1f1f1;
}
.auth-header-btn > svg{
    width: 21px;
    height: 21px;
    margin-right: 5px;
}
.social-media-accounts-connection{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}
.social-media-account-title{
    padding-top: 15px;
    padding-bottom: 15px;
    border-top: 1px solid #e5e5e5;
}
.social-media-account-title h3{
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    text-align: center;
    cursor: default;
}
.social-media-accounts-connection > a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    display: flex;
    align-items: center;      
    justify-content: center;   
    color: #0f0f0f;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    padding: 10px;
    margin-bottom: 6px;
    transition-duration: 0.2s;
    &:hover{
        border: 1px solid #0f0f0f;
    }
}
.social-media-accounts-connection > a > svg{
    width: 22px;
    height: 22px;
    margin-right: 10px;
}

.nice-tooltipstat {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.nice-tooltipstat .nice-tooltipstattext {
    visibility: hidden;
    width: max-content;
    max-width: 200px;
    background-color: #606060e1;
    color: #fff;
    text-align: center;
    padding: 9px 9px;
    border-radius: 4px;
    position: absolute;
    z-index: 9999;
    bottom: 125%; 
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}
.nice-tooltipstattext{
  font-size: 11px;
  font-weight: 300;
  line-height: 15px;
  letter-spacing: 0.35px;
}

.nice-tooltipstat:hover .nice-tooltipstattext {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

@media (max-width: 1023px) {
    .nice-tooltipstat .nice-tooltipstattext {
        display: none !important;
    }
}

#see-the-rest-of-the-explanation{
    font-weight: 600;
    display:none; 
    cursor:pointer;
    user-select: none;
}

.container-for-main-error-page {
    width: 100%;
    padding: 20px;
    padding-top: 60px;
    text-align: center;
    min-width: 300px;
}

.main-error-page-error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-error-page-monkey-placeholder {
    margin-bottom: 20px;
    width: 186px; 
    height: 174px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-page-monkey-image {
    max-width: 100%;
    height: auto;
    user-select: none;
    pointer-events: none;
}
.empty-content-for-image{
    margin-bottom: 20px;
    width: 350px; 
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.empty-content-for-image > img{
    max-width: 100%;
    height: auto;
    user-select: none;
    pointer-events: none;
}
.ain-error-page-for-error-message {
    font-size: 16px;
    color: #606060; 
    line-height: 20px;
    margin-bottom: 40px;
    max-width: 350px;
}

.ain-error-page-for-error-message-login {
    font-size: 14px;
    color: #606060; 
    line-height: 20px;
    margin-bottom: 40px;
    width: 100%;
    max-width: 400px;
}

.ain-error-page-for-search-box-container {
    display: flex;
    align-items: center;
    border: 1px solid #e5e5e5;
    background-color: #fff;
    border-radius: 2px;
    max-width: 480px;
    width: 100%;
}

.main-error-page-website-logo-wrapper {
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-right: 1px solid #e5e5e5;
    background-color: #fff; 
    height: 40px;
    flex-shrink: 0; 
}

.error-page-website-logo-img {
    width: 32px;
    height: 32px;
    margin-right: 5px;
    object-fit: cover;
    cursor: default;
    user-select: none;
    pointer-events: none;
}

.main-error-page-main-website-logo-text {
    color: #0f0f0f;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.4px;
    cursor: default;
    user-select: none;
    pointer-events: none;
}
.error-page-website-search-input {
    flex-grow: 1;
    border: none;
    padding: 10px;
    font-size: 1em;
    outline: none; 
    background: none;
    height: 40px;
}

.error-page-website-search-input::placeholder {
    color: #999;
}

.error-page-website-search-button {
    background-color: #f6f5fa;
    border: none;
    border-left: 1px solid #e5e5e5;
    cursor: pointer;
    padding: 8px 12px;
    height: 40px;
    transition: background-color 0.2s;
    flex-shrink: 0;
}

.error-page-website-search-button:hover {
    opacity: 0.7;
}

.error-page-website-search-icon {
    width: 24px;
    height: 24px;
    fill: #606060;
}

@media (max-width: 550px) {
    .main-error-page-website-logo-wrapper {
        padding: 0 8px;
    }
    .main-error-page-main-website-logo-text {
        display: none;
    }
    
    .error-page-website-logo-img {
        margin-right: 0;
    }
    
    .ain-error-page-for-search-box-container {
        max-width: 100%;
    }

    .ain-error-page-for-error-message {
        font-size: 15px;
        line-height: 16px;
        padding: 0 10px;
    }

    .main-error-page-monkey-placeholder {
        width: 125px;
        height: 125px;
    }
    .empty-content-for-image{
        width: 320px; 
        height: 230px;
    }
}
.mic-button-for-search-placeholder{
    padding: 10px;
    background-color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #e5e5e5;
    outline: none;
    cursor: pointer;
    border-radius: 999px;
}
.mic-button-for-search-placeholder svg{
    width: 38px;
    height: 38px;
    cursor: pointer;
    fill: #0f0f0f;
}
.mic-button-for-search-placeholder:hover,
.notifications-dropdown-icon-class:hover{
    border-color: #0f0f0f;
}
.notifications-dropdown-icon-class{
    padding: 10px;
    background-color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #e5e5e5;
    outline: none;
    cursor: pointer;
    border-radius: 999px;
}
.notifications-dropdown-icon-class svg{
    width: 38px;
    height: 38px;
    cursor: pointer;
    fill: #0f0f0f;
}

.listen-backdrop-modal-wrapper {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.1);
    display: none;
    align-items: center;
    justify-content: center;
  }

  @media (max-width: 768px) {
    .listen-backdrop-modal-wrapper {
      background: rgba(0, 0, 0, 0.23);
    }
    .listen-backdrop-modal-wrapper-container {
      width: 100%;
      height: 100%;
      max-width: none;
      max-height: none;
      border-radius: 0;
      display: flex;
      flex-direction: column;
    }
  }

  .listen-backdrop-modal-wrapper-container {
    background: #fff;
    width: 500px;
    max-width: calc(100vw);
    border-radius: 1px;
    padding: 50px 30px;
    box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
  }

  .listen-backdrop-modal-container-listen-head-title {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
  }

  .listen-backdrop-modal-container-listen-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
  }

  .listen-backdrop-modal-container-listen-close svg {
    background: none;
    border: none;
    width: 29px;
    height: 29px;
    fill: #0f0f0f;
    padding: 6px;
    border-radius: 999px;
    outline: 1px solid #d6d6d6;
    background-color: #fff;
    margin-left: 10px;
    cursor: pointer;
  }

  .listen-backdrop-modal-container-listen-close:hover svg {
    outline: 1px solid #0f0f0f;
  }

  .listen-backdrop-modal-container-listen-head-mic-centered {
    width: 96px;
    height: 96px;
    margin: 0 auto 14px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom: 15px;
  }
  

  .listen-backdrop-modal-container-listen-head-mic-centered > svg {
    width: 67px;
    height: 67px;
    fill: #fff;
    margin-bottom: 15px;
    padding: 15px;
    background-color: #1a73e7;
    border-radius: 999px;
  }

  .listen-backdrop-modal-container-listen-head-mic-listen-hint {
    font-size: 17px;
    font-weight: 400;
    line-height: 300px;
    color: #606060;
    line-height: 1.4;
    padding: 0 8px;
  }

  .visible { display: flex !important; }

  .sr-only {
    position:absolute !important;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
  }

.small-danger {
    color: #1a73e7;
    font-size: 13px;
    font-weight: 400;
    line-height: 17px;
    margin-top:10px;
}

.studio-edit-subtitle-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease;
}

.studio-edit-subtitle-modal-overlay.visible {
    visibility: visible;
    opacity: 1;
}

.studio-edit-subtitle-modal-container {
    background: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    height: 90%;
    max-height: 530px;
    display: flex;
    flex-direction: column;
}

.studio-edit-subtitle-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
}

.studio-edit-subtitle-modal-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    color: #0f0f0f;
}

.studio-edit-subtitle-modal-close-btn {
    background: none;
    border: none;
    cursor: pointer;
}
.studio-edit-subtitle-modal-close-btn svg{
    width: 29px;
    height: 29px;
    fill: #0f0f0f;
    padding: 6px;
    border-radius: 999px;
    outline: 1px solid #d6d6d6;
    background-color: #fff;
}
.studio-edit-subtitle-modal-close-btn svg:hover{
    background-color: rgba(236, 236, 236, 0.67)
}

.studio-edit-subtitle-modal-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 0px 15px;
    display: flex;
    flex-direction: column;
}

.studio-edit-subtitle-modal-tabs-header {
    display: flex;
    margin-bottom: 20px;
}

.studio-edit-subtitle-modal-tab-btn {
    background: none;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    color: #606060;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-bottom-color 0.2s;
}
.manage-subtitles-text-info-content{
    padding: 15px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #0f0f0f;
    border-left: 3px solid #0f0f0f;
    margin-bottom: 15px;
    cursor: default;
}
.studio-edit-subtitle-modal-tab-btn.active {
    color: #0f0f0f; 
    font-weight: 500;
    border-bottom-color: #0f0f0f;
}

.studio-edit-subtitle-modal-tab-content {
    display: none;
    flex-grow: 1;
}

.studio-edit-subtitle-modal-tab-content.active {
    display: block;
}

.studio-edit-subtitle-modal-footer {
    padding: 10px 0px;
    padding-bottom: 22px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}
.studio-edit-subtitle-modal-footer button {
    padding: 10px 15px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    outline: none;
}

#cancel-studio-edit-subtitle-modal-add-subtitle {
    background: none;
    border: 1px solid #e5e5e5;
    color: #606060;
}

#submit-studio-edit-subtitle-modal-add-subtitle {
    background-color: #0f0f0f;
    color: #fff;
}
#submit-studio-edit-subtitle-modal-add-subtitle:hover{
    background-color: #252525ff;
}

.studio-edit-subtitle-modal-form-container {
    width: 100%;
}

.studio-edit-subtitle-modal-form-group {
    margin-bottom: 15px;
}

.studio-edit-subtitle-modal-form-group label {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #0f0f0f;
    display: block;
    margin-bottom: 10px;
}

.studio-edit-subtitle-modal-form-group input[type="text"],
.studio-edit-subtitle-modal-form-group input[type="file"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e5e5e5;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    cursor: pointer;
}

.studio-edit-subtitle-modal-responsive-table-container {
    overflow-x: auto;
    width: 100%;
}
.nice-create-video-wrapper-page {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    max-width: 700px;
    width: calc(100% - 30px);
    margin: 30px auto;
}

.nice-create-upload-video-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px;
    width: 100%;
}
.nice-create-upload-video-title > a{
    font-size: 13px;
    font-weight: 500;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    color: #0f0f0f;
    border-radius: 999px;
    cursor: pointer;
    padding: 5px 17px;
    display: flex;
    align-items: center;
    text-decoration: none;
}
.nice-create-upload-video-title > a:hover{
    background-color: #0f0f0f1a;
}
.nice-create-upload-video-title > a svg{
    width: 22px;
    height: 22px;
    fill: #0f0f0f;
    margin-right: 5px;
}
.dropzone {
    margin-top: 16px;
    border: none;
    outline: none;
    padding: 26px;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.footers-create-video-studio-page {
    padding: 15px 60px;
    font-weight: 400;
    line-height: 20px;
    color: #606060;
    text-align: center;
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    margin-bottom: 15px;
}
.previews-nice-create-page {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 12px;
    padding: 0 20px;
}

.preview-card {
    background: #f2f2f2;
    padding: 15px 20px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border: none;
}

.thumb {
    width: 110px;
    height: 70px;
    flex: 0 0 110px;
}

.meta {
    flex: 1;
}
.info-headline-text {
    color: #0f0f0f;
    font-size: 14px;
}

.info-headline-text-info {
    color: #606060;
}

.nice-create-upload-video-uploader-top {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.upload-image-svg-create-video {
    width: 100px;
    height: 100px;
    padding: 22px;
    background-color: #f2f2f2;
    border-radius: 47%;
    fill: #606060;
    margin: 0 auto;
    margin-bottom: 30px;
}

.dz-message-nice-upload-body-video {
    display: flex;
    flex-direction: column;
}

.nice-create-upload-video-title h1 {
    margin: 0;
    font-size: 17px;
    font-weight: 500;
    line-height: 24px;
    color: #0f0f0f;
}

.nice-create-upload-video-subtitle {
    color: #606060;
    font-size: 13px;
    margin-top: 6px;
}

.dz-message {
    text-align: center;
    color: #606060;
    font-size: 15px;
}

.thumb img,
.thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
    border: 1px solid #e5e5e5;
}

.meta .name {
    font-weight: 500;
    font-size: 13px;
    color: #0f0f0f;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.meta .info {
    color: #606060;
    font-size: 12px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 5px;
}

.progress-wrap {
    width: 100%;
}

.prog {
    height: 8px;
    background: #e5e5e5;
    border-radius: 999px;
    overflow: hidden;
}

.prog>i {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #1a73e8, #2b8cff);
}

.actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.upload-video-btn-content {
    background: #0f0f0f;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 999px;
    padding: 9px 15px;
    cursor: pointer;
    outline: none;
    border: none;
    margin-bottom: 10px;
}

.upload-video-btn-content:hover {
    background: #0f0f0fc7;
}

.footers-create-video-studio-page span,
.footers-create-video-studio-page small {
    font-size: 11px;
}

.footers-create-video-studio-page span {
    margin-bottom: 0px;
}

.upload-video-status-nice-txt {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #0f0f0f;
}

@media (max-width: 640px) {
    .nice-create-video-wrapper-page {
        border: none;
        border-radius: 0;
        padding: 0;
        width: 100%;
        margin: 0;
    }
    .nice-create-upload-video-title h1 {
        margin: 0;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        color: #0f0f0f;
    }
    .nice-create-upload-video-title > a {
        font-size: 12px;
        font-weight: 500;
        background-color: #fff;
        border: 1px solid #e5e5e5;
        color: #0f0f0f;
        border-radius: 999px;
        cursor: pointer;
        padding: 5px 11px;
        display: flex;
        align-items: center;
        text-decoration: none;
    }
    .form-group-import-video > .form-input-textarea-group{
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
    .footers-create-video-studio-page span, .footers-create-video-studio-page small{
        line-height: 13px !important;
        margin-bottom: 10px;
    }
    .nice-create-upload-video-title {
        padding: 15px;
    }

    .dropzone {
        padding: 20px;
    }

    .footers-create-video-studio-page {
        padding: 15px 20px;
    }

    .previews-nice-create-page {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .thumb {
        width: 100px;
        height: 60px;
    }
}
.form-group-import-video{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 25px;   
    text-align: left;
    align-items: center;
    padding-bottom: 0px;
}
.import-video-hidden-status-select > label{
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #0f0f0f;
    width: 100%;
    margin-top: 15px;
}
.import-video-hidden-status-select{
    padding-bottom: 25px;
    padding-top: 0;
    flex-direction: column;
}

.form-group-import-video > .form-input-textarea-group{
    width: 100%;
    border-top: 1px solid #cccccc;
    padding: 25px 0px;
}
.form-group-import-video > .form-input-textarea-group > input,
.search-youtube-import-video-container > input,
.form-group-import-video > .form-input-textarea-group > textarea
.form-group-import-video > .form-input-textarea-group > select{
    width: 100%;
    padding: 13px 15px;
    background-color: #fff;
    font-size: 14px;
    font-weight: 400;
    color: #0f0f0f;
    margin-bottom: 10px;
}
.form-group-import-video > .form-input-textarea-group > .form-input-textarea-content{
    min-height: 125px;
    max-height: 650px;
    width: 100%;
    padding: 10px 15px;
    background-color: #fff;
    font-size: 14px;
    font-weight: 400;
    color: #0f0f0f;
    border-radius: 7px;
    margin-bottom: 10px;
    resize: none;
}
.form-input-textarea-group > input,
.form-input-textarea-content,
.import-video-hidden-status-select select{
    border: 1px solid #cccccc;
    outline: none !important;
    border-radius: 4px;
}
.form-input-textarea-group > input:hover,
.form-input-textarea-content:hover,
.import-video-hidden-status-select select:hover{
    border: 1px solid #0f0f0f;
}
.import-video-hidden-status-select select{
    width: 200px;
    padding: 13px 15px;
    background-color: #fff;
    font-size: 14px;
    font-weight: 400;
    color: #0f0f0f;
    margin-top: -10px;
}
#youtube-video-thumbnail{
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 20px;
    user-select: none;
    pointer-events: none;
}
input[readonly] {
    background-color: #f2f2f2 !important;
    cursor: default;
    border: none !important;
    outline: none !important;
}
.import-video-youtube-logo{
    width: 150px !important;
    height: 76px !important;
    margin: 0 auto;
    margin-top: 25px;
    margin-bottom: 5px;
}
.import-video-button{
    padding: 12px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    outline: none;
    background-color: #0f0f0f;
    color: #fff;
    float: right;
}
.import-video-button:hover{
    background-color: #252525ff;
}
.nice-studio-uploads-content {
    background-color: #fff;
    width: 100%;
    height: 100%;
    overflow-x: auto;
}

.nice-studio-page-upload-title {
    font-size: 23px;
    font-weight: 500;
    color: #0f0f0f;
    padding: 15px;
}

.nice-page-uploads-table {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 900px;
}

.nice-page-uploads-table-header {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    color: #606060;
    font-size: 13px;
    font-weight: 500;
}

.nice-page-uploads-col {
    padding: 0 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    font-weight: 500;
    color: #606060;
    letter-spacing: .011em;
}

.nice-page-uploads-col-video {
    flex: 1 1 45%;
    min-width: 350px;
    display: flex;
    align-items: flex-start;
}

.nice-page-uploads-col-visibility {
    flex: 0 0 10%;
    min-width: 80px;
    display: flex;
    align-items: center;
}

.nice-page-uploads-col-restrictions {
    flex: 0 0 10%;
    min-width: 80px;
}

.nice-page-uploads-col-date {
    flex: 0 0 10%;
    min-width: 100px;
    line-height: 1.4;
}

.nice-page-uploads-col-views {
    flex: 0 0 8%;
    min-width: 60px;
    text-align: right;
}

.nice-page-uploads-col-comments {
    flex: 0 0 8%;
    min-width: 60px;
    text-align: right;
}

.nice-page-uploads-col-rating {
    flex: 0 0 9%;
    min-width: 80px;
}

.nice-page-uploads-row {
    display: flex;
    align-items: center;
    min-height: 80px;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e5;
    transition: background 0.2s;
}

.nice-page-uploads-row:hover {
    background-color: #f9f9f9;
}

.nice-page-uploads-video-details {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-top: 5px;
}

.nice-page-uploads-video-title {
    color: #0f0f0f;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
    max-height: 2.8em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
}

.nice-page-uploads-video-title:hover {
    text-decoration: underline;
}

.nice-page-uploads-video-description {
    color: #606060;
    font-size: 13px;
    line-height: 20px;
    margin-top: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
    font-weight: 400;
}

.nice-page-uploads-action-buttons {
    display: none;
    margin-top: 2px;
}

.nice-page-uploads-row:hover .nice-page-uploads-action-buttons {
    display: flex;
}

.nice-page-uploads-action-btn {
    background: none;
    border: none;
    color: #606060;
    padding: 4px;
    cursor: pointer;
    margin-right: 4px;
}

.nice-page-uploads-action-btn:hover {
    color: #0f0f0f;
}

.nice-page-uploads-icon {
    width: 31px;
    height: 31px;
    fill: #0f0f0f;
    border-radius: 999px;
    padding: 5px;
}

.nice-page-uploads-icon:hover {
    background-color: rgba(212, 212, 212, 0.57);
}

.nice-page-uploads-thumbnail-container {
    position: relative;
    margin-right: 10px;
    flex-shrink: 0;
}

.nice-page-uploads-thumbnail {
    width: 120px;
    height: 68px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.nice-page-uploads-video-duration {
    position: absolute;
    bottom: 10px;
    right: 6px;
    background-color: rgba(0, 0, 0, 0.63);
    color: #fff;
    padding: 2px 6px;
    font-size: 12px;
    border-radius: 4px;
}

.nice-page-uploads-rating-count {
    font-size: 12px;
    font-weight: 400;
    color: #606060;
    margin-top: 5px;
}

.nice-page-uploads-col>svg {
    width: 16px;
    height: 16px;
    fill: #0f0f0f;
    margin-right: 6px;
}

@media (max-width: 900px) {
    .nice-page-uploads-table {
        min-width: 0;
        width: 100%;
    }

    .nice-page-uploads-table-header {
        display: none;
    }

    .nice-page-uploads-row {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 20px;
    }

    .nice-page-uploads-col {
        width: 100%;
        padding: 0 10px;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
    }

    .nice-page-uploads-col-video {
        flex: 1 1 100%;
        min-width: 0;
        display: flex;
        align-items: center;
    }

    .nice-page-uploads-video-title {
        font-weight: 500;
        line-height: 20px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        word-wrap: break-word;
    }

    .nice-page-uploads-video-description {
        display: none;
    }

    .nice-page-uploads-action-buttons {
        display: flex;
        margin-top: 5px;
    }

    .nice-page-uploads-thumbnail-container {
        width: 150px;
        height: 100px;
    }

    .nice-page-uploads-thumbnail {
        width: 100%;
        height: 100%;
        aspect-ratio: 16/9;
    }

    .nice-page-uploads-video-duration {
        bottom: 10px;
        right: 10px;
        padding: 4px 6px;
        font-size: 12px;
    }

    .nice-studio-page-upload-title {
        font-size: 18px;
    }

    .nice-page-uploads-col-visibility,
    .nice-page-uploads-col-date,
    .nice-page-uploads-col-views,
    .nice-page-uploads-col-comments,
    .nice-page-uploads-col-rating,
    .nice-page-uploads-col-restrictions,
    .nice-page-uploads-desktop-only {
        display: none !important;
    }
}

@media (min-width: 901px) {
    .nice-page-uploads-row:hover .nice-page-uploads-video-description {
        display: none;
    }
}

.video-for-comments-placeholder{
    display: inline-block;
    width: 100%;
}
.nice-watch-comment-container {
    width: 100%;
    padding: 0 12px;
}

.nice-watch-comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.nice-watch-comment-count {
    font-size: 20px;
    font-weight: 500;
    color: #0f0f0f; 
}


.nice-watch-comment-add-section {
    display: flex;
    margin-bottom: 30px;
}

.nice-watch-comment-avatar {
    flex-shrink: 0;
    border-radius: 999px;
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.nice-watch-comment-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    object-fit: cover;
    user-select: none;
}
.nice-watch-comment-avatar-medium > a > img{
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 999px;
}
.nice-watch-comment-avatar-small {
    width: 30px;
    height: 30px;
}
.nice-watch-comment-avatar-medium {
    width: 30px;
    height: 30px;
    font-size: 1.2em;
}

.nice-watch-comment-input-area {
    flex-grow: 1;
}

.nice-watch-comment-input {
    width: 100%;
    max-height: 350px;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    padding: 5px 0;
    resize: none; 
    font-size: 15px;
    outline: none;
    transition: border-bottom-color 0.3s;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #0f0f0f;
}

.nice-watch-comment-input:focus {
    border-bottom: 2px solid #0f0f0f;
}

.nice-watch-comment-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}

.nice-watch-comment-actions-hidden {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    margin-top: 0;
}

.nice-watch-comment-actions-visible {
    max-height: 50px;
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}

.nice-watch-comment-button {
    padding: 10px 16px;
    font-weight: 500;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

.nice-watch-comment-button-cancel {
    background: none;
    color: #606060;
    margin-right: 8px;
}

.nice-watch-comment-button-cancel:hover {
    background-color: #eee;
}

.nice-watch-comment-button-primary {
    background-color: #e5e5e5;
    color: #fff;
}

.nice-watch-comment-button-primary:not(:disabled) {
    background-color: #1a73e7;
}

.nice-watch-comment-button-primary:not(:disabled):hover {
    background-color: #0550ae;
}

.nice-watch-comment-button-primary:disabled {
    cursor: not-allowed;
}

.nice-watch-comment-item {
    display: flex;
    margin-bottom: 10px;
}

.nice-watch-comment-content {
    flex-grow: 1;
}

.nice-watch-comment-meta {
    margin-bottom: 4px;
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.nice-watch-comment-author {
    font-size: 13px;
    font-weight: 500;
    color: #0f0f0f;
    margin-right: 4px;
    display: flex;
    align-items: center;
}
.nice-watch-comment-author > svg{
    width: 12px;
    height: 12px;
    fill: #0f0f0f;
    margin-left: 5px;
    position: relative;
    top: 1px;
}

.nice-watch-comment-time {
    font-size: 12px;
    font-weight: 400;
    color: #606060;
    position: relative;
    top: 1px;
}

.nice-watch-comment-text {
    font-size: 14px;
    font-weight: 400;
    color: #0f0f0f;
    margin-bottom: 8px;
    word-wrap: break-word;
    white-space: pre-wrap;
}

.nice-watch-comment-footer {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.nice-watch-comment-vote {
    display: flex;
    align-items: center;
}

.nice-watch-comment-vote-button {
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
    font-size: 18px;
    color: #0f0f0f;
    padding: 6px;
    border-radius: 999px;
    text-align: center;
    display: flex;
}
.nice-watch-comment-vote-button:hover{
    background-color: #f2f2f2;
}

.nice-watch-comment-vote-count {
    font-size: 11px;
    color: #606060;
    user-select: none;
    margin-right: 5px;
    top: 2px;
    position: relative;
}

.nice-watch-comment-reply {
    background: none;
    border: none;
    color: #0f0f0f;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    margin-left: 15px;
    padding: 7px 13px;
    border-radius: 999px;
}

.nice-watch-comment-reply:hover {
    background-color: #eee;
}

.nice-watch-comment-replies-toggler {
    background: none;
    border: none;
    color: #1a73e7;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin-top: 5px;
    padding: 6px 15px;
    width: max-content;
    border-radius: 999px;
    user-select: none;
}

.nice-watch-comment-replies-toggler > ion-icon{
    font-size: 16px;
    margin-right: 3px;
}

.nice-watch-comment-replies-toggler:hover {
    background-color: #0551ae1e;
}


@media (max-width: 600px) {
    .nice-watch-comment-count {
        font-size: 1em;
        margin-right: 15px;
    }

    .nice-watch-comment-avatar {
        margin-right: 10px;
    }
    
    .nice-watch-comment-avatar-small,
    .nice-watch-comment-avatar-medium {
        width: 36px;
        height: 36px;
    }

    .nice-watch-comment-input {
        font-size: 14px;
    }

    .nice-watch-comment-button {
        padding: 8px 12px;
        font-size: 0.85em;
    }
}
.reply-in-reply-avatar{
    width: 30px;
    height: 30px;
    border-radius: 999px;
}
.session-user-menu-close-icon{ display: none; }
.top-bar { 
    display: flex; 
    justify-content: flex-end; 
    align-items: center; 
    padding: 10px 16px; 
    background: #fff; 
    border-bottom: 1px solid #ddd; 
    position: relative; 
    z-index: 100; 
}
.sessionAuthUserAvatar { 
  width: 40px; 
  height: 40px; 
  cursor: pointer; 
  transition: transform 0.1s ease;
  position: relative;
  object-fit: cover;
  border-radius: 999px;
  border: 1px solid #e5e5e5;
}
.session-user-account-menu {
  position: absolute;
  top: 55px;
  right: 16px;
  width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 32px 0 rgba(0,0,0,0.1);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.97) translateY(-4px);
  transition: transform 0.2s ease, opacity 0.2s ease;
  min-height: 200px;
  max-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
  overflow: hidden; 
  overflow-y: auto;
  padding-bottom: 5px;
  z-index: 10;
}
.session-user-account-menu.active { 
  opacity: 1; 
  pointer-events: all; 
  transform: scale(1) translateY(0); 
}
.session-user-id-menu-inner { 
  display: flex; 
  width: 200%; 
  transition: transform 0.25s ease-in-out;
  height: 100%;
}
.session-user-account-menu.submenu-active .session-user-id-menu-inner {
  transform: translateX(-50%);
}
.session-active-user-main-menu-dropdown {
  width: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto; 
  position: relative;
}
.submenu{
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    position: relative;
}
.session-user-info-id { 
  padding: 16px; 
  border-bottom: 1px solid #eee; 
  display: flex; 
  align-items: flex-start; 
  gap: 10px; 
  background:#fff; 
  flex-shrink: 0;
  cursor: default;
}
.session-user-info-id img { 
  width: 40px; 
  height: 40px; 
  border-radius: 999px; 
  user-select: none;
  pointer-events: none;
  object-fit: cover;
  border: 1px solid #e5e5e5;
}
.session-info-user-text { 
  display: flex; 
  flex-direction: column; 
  flex: 1; 
}
.session-info-user-text_name { 
  font-size: 16px; 
  font-weight: 400;
  line-height: 22px;
  color: #0f0f0f; 
  margin-bottom: 2px;
}
.usersession-info-user-text_name { 
  font-size: 13px; 
  color: #606060; 
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-width: 155px; 
}

.session-user-info-id a { 
  font-size: 13px; 
  color: #1a73e7; 
  text-decoration: none; 
  margin-top: 2px; 
}

.session-user-account-menu-item { 
  padding: 12px 16px; 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  cursor: pointer; 
  font-size: 14px; 
  color: #0f0f0f; 
  text-decoration: none; 
  transition: background 0.15s ease; 
  background:#fff; 
}
.session-user-account-menu-item > svg,
.session-dropdown-switch-language-item > a svg{
  width: 24px;
  height: 24px;
  fill: #0f0f0f;
}
.session-user-account-menu-item:hover, .session-user-account-menu-item:focus 
{ background: #f2f2f2; 
  outline: none; 
}
.session-user-account-menu-item.no-border { border-bottom: none; }

.right-arrow { 
  margin-left: auto; 
  width: 24px;
  height: 24px;
  fill: #0f0f0f;
}

.session-switch-menu-back-button { 
  padding: 10px 16px; 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  border-bottom: 1px solid #eee; 
  background: #fff; 
  cursor: pointer; 
  font-size: 14px;
  font-weight: 500; 
  flex-shrink: 0; 
}
.session-switch-menu-back-button:hover, .session-switch-menu-back-button:focus { background: #f2f2f2; outline: none; }
.session-switch-menu-back-button svg { 
  width: 21px; 
  height: 21px; 
  margin-right: 4px; 
  fill: #0f0f0f;
}

.submenu-header { 
  font-weight: 600; 
  font-size: 14px; 
  padding: 10px 16px; 
  background: #fff;
  border-bottom: 1px solid #eee;
  flex-shrink: 0;
}

.session-dropdown-user-menu-language-list, .account-list { display: flex; flex-direction: column; }
.session-dropdown-switch-language-item, .account-item { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 10px 16px; 
  cursor: pointer; 
  font-size: 14px; 
  transition: background 0.15s ease; 
}
.session-dropdown-switch-language-item:hover, .session-dropdown-switch-language-item:focus, .account-item:hover, .account-item:focus { 
  background: #f2f2f2; 
  outline: none; 
}

.account-item { justify-content: flex-start; gap: 12px; }
.account-item img { 
  border-radius: 999px; 
  width: 36px; 
  height: 36px; 
  margin-right: 0; 
  display: inline-block; 
  user-select: none;
  pointer-events: none;
} 
.account-item.active-account { 
  font-weight: 600; 
}
.account-item.management { 
  color: #0f0f0f;
  font-weight: 400;
  font-size: 14px;
} 
.account-item.management > span{
  display: flex;
  align-items:center;
  gap: 12px;

  
}
.account-item.management > span svg{
  width: 24px;
  height: 24px;
  fill: #0f0f0f;
}

.session-dropdown-switch-language-item > a{
  color: #0f0f0f;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.session-active-user-main-menu-dropdown::-webkit-scrollbar, .submenu::-webkit-scrollbar{width:6px;}
.session-active-user-main-menu-dropdown::-webkit-scrollbar-thumb, .submenu::-webkit-scrollbar-thumb{background:#ccc; border-radius:10px;}

.session-user-dropdown-menu-divider { 
  height: 1px; 
  background: #eee; 
} 
.session-user-dropdown-menu-group { 
  padding: 8px 0; 
}

.session-user-dropdown-menu-group:last-of-type { border-bottom: none; }


@media (max-width:600px){
  body.menu-open{overflow:hidden;}
  .session-user-account-menu{
    position: fixed;
    left:0;
    right:0;
    bottom:0;
    width:100vw;
    border-radius:0;
    box-shadow:none;
    background:#fff;
    transform:translateY(10px);
    opacity:0;
    z-index:9999;
    transition: all 0.25s ease;
  }

  .session-user-account-menu.active{
    transform:translateY(0);
    opacity:1;
    overflow: hidden; 
  }
  .session-user-menu-close-icon{
    display: block; 
    position: absolute; 
    top:12px; 
    right:14px; 
    background:none; 
    border:none; 
    cursor:pointer; 
    z-index:10000;
  }
  .session-user-menu-close-icon svg{
    width: 29px;
    height: 29px;
    fill: #0f0f0f;
    padding: 6px;
    border-radius: 999px;
    outline: 1px solid #d6d6d6;
    background-color: #fff;
  }
  
  .session-user-account-menu-item, .session-switch-menu-back-button, .session-dropdown-switch-language-item, .account-item {
    padding: 15px 20px; 
    font-size: 15px;
  }
  .session-switch-menu-back-button{
    font-size: 17px;
    font-weight: 600;
  }
  .session-user-info-id { 
    padding: 15px; 
  }
  .session-info-user-text_name { 
    font-size: 15px; 
  }
  .usersession-info-user-text_name { 
    font-size: 15px; 
  }
  .session-user-info-id a { 
    font-size: 15px; 
  }
}
.video-container {
    width: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f2f2f2;
}

.plyr--full-ui input[type=range] {
    color: #1a73e7 !important;
    border-radius: 0px !important;
}

.plyr__control--overlaid {
    background: #1a73e7 !important;
}
.plyr__controls button{
    border-radius: 999px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.08);
    padding: 11px;
}
.plyr__controls button svg {
    width: 15px;  
    height: 15px;
}
.plyr__controls button:hover {
    backdrop-filter: blur(10px) !important;
    background: rgba(255, 255, 255, 0.048) !important;
}
.plyr__menu__container {
    color: #0f0f0f !important;
    border-radius: 17px !important;
}
.plyr__menu__container [role=menu] > button{
    color: #0f0f0f !important;
}
.plyr__progress .plyr__tooltip{
    font-size: 11px !important;
    font-weight: 400 !important;
    backdrop-filter: blur(10px) !important;
    background: rgba(255, 255, 255, 0.048) !important;
    color: #ffffff !important;
}
.plyr__menu__container .plyr__control>span{
    color: #0f0f0f !important;
    fill: #0f0f0f !important;
}
.plyr--video {
    --plyr-color-main: #1a73e7;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.08);
}
.video-container { 
    position: relative; 
}
.seek-notification {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 48px;
    color: #fff;
    text-shadow: 0 0 12px rgba(0,0,0,0.7);
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.seek-notification.show {
    opacity: 1;
}
.seek-notification ion-icon {
    font-size: 48px;
}
.channel-page-general__wrapper {
    width: 100%;
    max-width: 1280px; 
    margin: 0 auto;
    background-color: #fff; 
}
.channel-page-for_user-channel-banner {
    width: 100%;
    background-size: cover; 
    background-repeat: no-repeat;
    padding-top: 16.125%;
    height: 0; 
    max-height: 250px; 
    border-radius: 12px;
}

@media (max-width: 768px) {
    .channel-page-for_user-channel-banner {
        border-radius: 0px;
        padding-top: 16.125%;
        height: 50px;
    }
}

.channel-page-for_user-channel-header {
    display: flex;
    align-items: center;
    padding: 14px;
    flex-wrap: wrap; 
}

.channel-page-for_user-channel-page-for_user-profile-picture-wrapper {
    flex-shrink: 0; 
    margin-right: 20px;
}

.channel-page-for_user-profile-picture {
    width: 128px; 
    height: 128px;
    border-radius: 50%;
    object-fit: cover;
    background-size: 100%; 
    background-position: 0% 100%; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.channel-page-for_user-channel-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
    min-width: 0; 
}
.channel-page-for_user-channel-info-top {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}
.channel-page-for_user-channel-main-details {
        flex-grow: 1;
        min-width: 0;
}
.channel-page-for_user-subscribe-button {
    background-color: #1a73e7;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 16px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s;
    flex-shrink: 0;
    margin-left: 20px;
}

@media (max-width: 850px) {
    .channel-page-for_user-subscribe-button {
        width: max-content;
        order: 3;
        margin-bottom: 5px;
        margin-top: 5px;
        margin-left: 0; 
    }
    .channel-page-for_user-channel-main-details {
        width: 100%; 
        order: 1;
    }
    .channel-page-for_user-channel-page-for_user-channel-name-stats {
        width: 100%;
        order: 2;
    }
}

@media (max-width: 600px) {
    .channel-page-for_user-channel-header {
            flex-wrap: nowrap;
            flex-direction: column;
            align-items: flex-start;
            margin-bottom: -5px;
    }
    .channel-page-for_user-channel-page-for_user-profile-picture-wrapper {
            margin-right: 0;
            margin-bottom: 15px;
    }
    .channel-page-for_user-channel-info {
        width: 100%;
    }
    .channel-page-for_user-channel-info-top {
        flex-direction: column; 
        margin-bottom: 5px;
    }
    .channel-page-for_user-subscribe-button {
        width: max-content;
        margin-bottom: 5px;
    }
    .channel-page-for_user-subscribe-button{
        padding: 10px 15px;
        font-size: 12px;
    }
        .channel-page-for_user-profile-picture {
        width: 80px;
        height: 80px;
    }
    .channel-page-for_user-channel-name {
        font-size: 20px;
    }
}

.channel-page-for_user-channel-page-for_user-channel-name-stats {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.channel-page-for_user-channel-page-for_user-channel-name-stats > svg{
    width: 14px;
    height: 14px;
    fill: #0f0f0f;
}

.channel-page-for_user-channel-name {
    font-size: 24px;
    font-weight: 700;
    color: #0f0f0f;
    line-height: 1.2;
    margin-right: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.channel-page-for_user-channel-handle-stats {
    font-size: 14px;
    color: #606060;
    display: flex;
    gap: 5px;
    margin-bottom: 5px;
}
.channel-page-for_user-channel-handle{
    color: #0f0f0f;
    font-weight: 500;
}
.channel-page-for_user-channel-description {
    font-size: 14px;
    color: #606060;
    line-height: 20px;
    font-weight: 400;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
}
.open-your-channel-for-description-modal{
    margin-left: 4px;
    font-weight: 600;
    color: #0f0f0f;
    cursor: pointer;
}
.channel-page-for_user-description-link-modal {
    font-size: 14px;
    font-weight: 500;
    color: #1a73e7;
    text-decoration: none;
}

.channel-page-for_user-subscribe-button:hover {
    background-color: #0d5cc4;
}
.nice-channel-page-content-area{
    margin-bottom: 15px;
}
.nice-playlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.nice-playlist-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f0f0f;
    margin-bottom: 7px;
}

.nice-playlist-description {
    color: #606060;
    font-size: 14px;
    font-weight: 20px;
    margin-bottom: 15px;
    margin-top: -10px;
}

.nice-videos-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.nice-video-card {
    display: flex;
    flex-direction: column;
}

.nice-channel-page-thumbnail-container {
    position: relative;
    margin-bottom: 8px;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.nice-channel-page-video-thumbnail {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}

.nice-channel-page-video-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nice-channel-page-video-chanel,
.nice-channel-page-video-meta {
    color: #606060;
    font-size: 0.875rem;
    margin-bottom: 2px;
}

@media (max-width: 1024px) {
    .nice-videos-grid-container {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    .nice-channel-page-content-area{
        padding-left: 14px;
        padding-right: 14px;
    }
    .nice-channel-page-tabs-list{
        padding-left: 14px;
        padding-right: 14px;
    }
}


.nice-channel-page-tabs-navigation {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 32px;
    overflow-x: auto; 
    -webkit-overflow-scrolling: touch;
}
.nice-channel-page-tabs-list {
    display: flex;
    list-style: none;
    gap: 16px;
    white-space: nowrap;
    padding-bottom: 4px;
}
.nice-channel-page-tab-item {
    padding: 8px 0;
    font-size: 16px;
    font-weight: 300;
    color: #606060;
    position: relative;
    cursor: pointer;
}

.nice-channel-page-tab-item a {
    padding: 8px 0; 
    display: block;
    color: #0f0f0f;
}

.nice-channel-page-tab-active {
    color: #0f0f0f;
    font-weight: 500;
}

.nice-channel-page-tab-active::after {
    content: '';
    position: absolute;
    bottom: -4px; 
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #0f0f0f;
}

@media (max-width: 767px) {
    .nice-channel-page-tabs-navigation {
        margin-bottom: 24px;
    }
    .nice-channel-page-tabs-list {
        gap: 12px;
        padding-left: 14px;
        padding-right: 14px;
        overflow: hidden;
    }
    .nice-channel-page-tab-item {
        font-size: 16px;
    }

    .nice-channel-page-content-area{
        padding-left: 14px;
        padding-right: 14px;
    }
}

@media (max-width: 767px) {
    .nice-channel-page-title {
        font-size: 1.5rem;
    }

    .nice-channel-page-subscribe-button {
        padding: 8px 24px;
        order: 2;
    }

    .nice-videos-grid-container {
        grid-template-columns: 1fr;
    }

    .nice-channel-page-video-title {
        font-size: 0.95rem;
    }

    .nice-playlist-title {
        font-size: 1.1rem;
    }
}

.nice-uploads-edit-container {
    background-color: #fff;
    min-height: 100vh;
}

.nice-uploads-edit-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    position: sticky;
    top: -13px;
    z-index: 1;
    background-color: #fff;
}

.nice-uploads-edit-settings-group{
    margin-bottom: 20px;
}

.nice-uploads-edit-title-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nice-uploads-edit-header-bar h1 {
    font-size: 25px;
    font-weight: 500;
    margin: 0;
    color: #0f0f0f;
}

.nice-uploads-edit-back-icon {
    display: none; 
    cursor: pointer;
}
.nice-uploads-edit-back-icon svg{
    fill: #0f0f0f;
    width: 20px;
    height: 20px;
    margin-right: 6px;
    position: relative;
    top: 2px;
}
.nice-uploads-edit-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nice-uploads-edit-button {
    padding: 10px 18px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #0f0f0f;
}
.nice-uploads-edit-button:hover{
    background-color: #E5E5E5;
}
.nice-uploads-edit-menu-dots{
    width: 40px;
    height: 40px;
}
.nice-uploads-edit-menu-dots svg{
    cursor: pointer;
    width: 40px;
    height: 40px;
    fill: #0f0f0f;
    padding: 10px;
    border-radius: 999px;
}
.nice-uploads-edit-menu-dots svg:hover{
    background-color: #f0f0f0;
}

.nice-uploads-edit-content-area {
    display: flex;
    padding: 24px;
    gap: 32px;
    margin: 0 auto;
}

.nice-uploads-edit-left-panel {
    flex: 2; 
    min-width: 450px;
    order: 1;
}

.nice-uploads-edit-right-panel {
    flex: 1; 
    max-width: 420px;
    min-width: 320px;
    height: fit-content;
    border-radius: 12px;
    background-color: #ffffff;
    position: static;
    top: 90px;
    order: 2; 
}

.nice-uploads-edit-form-group { 
    margin-bottom: 25px; 
}
.nice-uploads-edit-form-group label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: inherit;
    margin-bottom: 8px;
    font-weight: 500;
}
.nice-uploads-edit-required { 
    color: #999999; 
    font-weight: 400; 
    font-size: 13px; 
    margin-left: 4px; 
}

.nice-uploads-edit-input-wrapper {
    position: relative;
    border-radius: 12px;
    padding: 13px 17px;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
}
.video_title_group{
    min-height: 56px;
}
.nice-uploads-edit-input-wrapper:focus-within {
    border-color: #0f0f0f;
}
#nice-uploads-edit-title, #nice-uploads-edit-description {
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    color: #0f0f0f;
    resize: none;
    padding: 0;
    box-sizing: border-box;
}
#nice-uploads-edit-title { 
    height: 20px; 
}
#nice-uploads-edit-description {
    min-height: 90px;
    max-height: 650px;
    padding: 13px 15px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
}
#nice-uploads-edit-description:focus {
    border-color: #0f0f0f;
}
.nice-uploads-edit-char-counter {
    position: absolute;
    bottom: 6px;
    right: 12px;
    font-size: 12px;
    color: #999999 !important;
}
.nice-uploads-edit-label-heading { 
    font-size: 15px; 
    font-weight: 500; 
    color: #0f0f0f; 
    margin-bottom: 8px; 
    display: block; 
}
.nice-uploads-edit-label-description, .nice-uploads-edit-audience-text { 
    font-size: 13px; 
    color: #606060; 
    margin-top: 0; 
    margin-bottom: 12px; 
    line-height: 1.4; 
}
.nice-uploads-edit-link, .nice-uploads-edit-link-value { 
    color: #1a73e7; 
    text-decoration: none; 
    font-weight: 500; 
    cursor: pointer; 
}
.nice-uploads-edit-link:hover, .nice-uploads-edit-link-value:hover { 
    text-decoration: underline; 
}
.nice-uploads-edit-media-group{
    margin-bottom: 25px;
}
.nice-uploads-edit-thumbnail-preview {
    width: 147px;
    height: 78px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    padding: 2px;
    border: 1px dotted #e5e5e5;
}
.nice-uploads-edit-settings-right-svg{
    width: 24px;
    height: 24px;
    fill: #0f0f0f;
    cursor: pointer;
}
.nice-uploads-edit-thumbnail-preview:hover{
    border: 1px dotted #0f0f0f;
}
.nice-uploads-edit-thumbnail-preview img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
}
.nice-uploads-edit-select-wrapper { position: relative; display: inline-block; }
.nice-uploads-edit-select-box {
    padding: 14px 17px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background-color: #ffffff;
    font-size: 14px;
    color: #0f0f0f;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    width: 350px;
    outline: none;
    box-shadow: none;
}
.nice-uploads-edit-select-box[disabled]{
    opacity: .5;
    background-color: #f9f9f9;
}
.nice-uploads-edit-select-box:hover{
    border: 1px solid #0f0f0f;
}
.nice-uploads-edit-full-width-select .nice-uploads-edit-select-box { 
    width: 250px; 
    box-sizing: border-box; 
    padding-right: 30px; 
}
.nice-uploads-edit-arrow-icon {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    fill: #606060;
}
.nice-uploads-edit-audience-selector {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.nice-uploads-edit-audience-selector input[type="radio"] {
    margin-right: 8px;
    transform: scale(1.1);
    accent-color: #1a73e7;
}
.nice-uploads-edit-audience-selector label {
    color: #0f0f0f;
    font-size: 14px;
    font-weight: 400;
}
.nice-uploads-edit-set-manually {
    border-left: 1px solid #e5e5e5;
    padding-left: 12px;
    margin-left: 12px;
    font-size: 14px;
}
.nice-uploads-edit-audience-note {
    color: #0f0f0f;
}
.nice-uploads-edit-video-card { 
    margin-bottom: 20px; 
    background-color: #f9f9f9;
    border-radius: 12px;
}
.nice-uploads-edit-video-preview {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 0px;
    overflow: hidden;
    margin-bottom: 10px;
    border: 1px solid #e5e5e5;
    border-radius: 12px 12px 0px 0px;
}
.nice-uploads-edit-video-image { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    border-radius: 12px 12px 0px 0px;
    pointer-events: none;
}

.nice-uploads-edit-video-details-list .nice-uploads-edit-detail-row { 
    margin-bottom: 13px;
}
.nice-uploads-edit-video-details-list{
    padding: 15px;
    padding-top: 7px;
    padding-bottom: 7px;
}
.nice-uploads-edit-detail-label { 
    font-size: 12px; 
    line-height: 16px;
    font-weight: 400;
    color: #606060; 
    margin-bottom: 2px; 
    display: block; 
}
.nice-uploads-edit-detail-value { 
    font-size: 15px; 
    font-weight: 400;
    line-height: 25px;
    word-break: break-all; 
}
.nice-uploads-edit-quality-tags { 
    display: flex; 
    gap: 8px; 
    margin-top: 4px; 
}
.nice-uploads-edit-quality-tag {
    padding: 2px 3px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 2px;
    color: #0f0f0f;
    border: 1px solid #0f0f0f;
    user-select: none;
    pointer-events: none;
}
.nice-uploads-edit-restriction-value { 
    color: #0f0f0f; 
    font-size: 14px; 
    margin-bottom: 0; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 14px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
}
.nice-uploads-edit-additional-settings { 
    margin-top: 15px; 
}
.nice-uploads-edit-setting-row { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 10px 14px; 
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
}
.nice-uploads-edit-setting-row:hover{
    border: 1px solid #0f0f0f;
}
.nice-uploads-edit-setting-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nice-uploads-edit-setting-label {
    font-size: 14px;
    font-weight: 400;
    color: #0f0f0f;
    display: flex;
    align-items: center;
}
.nice-uploads-edit-setting-label > svg{
    width: 24px;
    height: 24px;
    fill: #0f0f0f;
    margin-right: 6px;
}
.nice-uploads-edit-label-with-icon { 
    display: flex; 
    align-items: center; 
    color: #606060; 
}


@media (max-width: 1400px) {
    .nice-uploads-edit-content-area {
        flex-direction: column;
        padding: 16px;
        gap: 20px;
    }

    .nice-uploads-edit-left-panel {
        min-width: unset;
        flex: auto;
        order: 1; 
    }

    .nice-uploads-edit-right-panel {
        flex: auto;
        max-width: 100%;
        min-width: unset;
        position: static; 
        order: 2;
    }
    
    .nice-uploads-edit-back-icon {
        display: block;
    }
    
    .nice-uploads-edit-title-group {
        gap: 8px; 
    }

    .nice-uploads-edit-header-bar h1 {
        font-size: 16px; 
    }
}

@media (max-width: 600px) {
    .nice-uploads-edit-header-bar {
        padding: 12px 16px;
        top: 60px;
    }

    .nice-uploads-edit-button {
        padding: 9px 20px;
        font-size: 13px;
    }

    .nice-uploads-edit-content-area {
        padding: 8px;
    }

    .nice-uploads-edit-thumbnail-preview {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .nice-uploads-edit-thumbnail-preview img {
        width: 100%;
        height: 100%;
    }
    
    .nice-uploads-edit-select-box {
        width: 250px;
        box-sizing: border-box;
    }
}
.change-save-visibility-modal{
    background-color: #1a73e7; 
    color: #fff; 
    border: none; 
    padding: 11px 20px; 
    border-radius: 20px; 
    font-weight: 500; 
    cursor: pointer;
}
.change-save-visibility-modal:hover{
    background-color: #024cadff;
}
.nice-edit-video-visibility-setting-title {
    font-size: 15px;
    font-weight: 500;
    color: #0f0f0f;
    padding: 0px 20px;
}

.nice-edit-video-visibility-options {
    display: flex;
    flex-direction: column;
    gap: 8px; 
    padding: 12px;
}

.nice-edit-video-visibility-radio-card {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 1px solid transparent; 
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.15s, background-color 0.15s;
    position: relative;
}

.nice-edit-video-visibility-radio-card:hover {
    background-color: #f0f0f0; 
}

.nice-edit-video-visibility-radio-card.selected {
    border-color: #1a73e7; 
    background-color: #f1f8ff; 
}

.nice-edit-video-visibility-radio-card input[type="radio"] {
    display: none; 
}

.nice-edit-video-visibility-radio-card::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 2px solid #606060; 
    border-radius: 50%;
    margin-right: 16px;
    box-sizing: border-box;
    transition: all 0.15s ease-in-out;
}


.nice-edit-video-visibility-radio-card.selected::after {
    content: '';
    display: block;
    width: 8px; 
    height: 8px;
    background: #0f0f0f;
    border-radius: 50%;
    position: absolute;
    left: 17px; 
    top: 50%; 
    transform: translateY(-50%); 
    z-index: 1; 
}

.nice-edit-video-visibility-radio-card-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.nice-edit-video-visibility-option-name {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #0f0f0f;
}

.option-description {
    font-size: 12px;
    color: #606060;
}

.nice-edit-video-visibility-schedule-card {
    padding: 20px 0;
}

.nice-edit-video-visibility-schedule-card .nice-edit-video-visibility-setting-title {
    cursor: pointer;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-icon {
    width: 24px;
    height: 24px;
    fill: #606060;
    transition: transform 0.3s ease;
}

.nice-edit-video-visibility-schedule-card.expanded .dropdown-icon {
    transform: rotate(180deg);
}

.schedule-details {
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.schedule-details.hidden {
    display: none; 
}

.schedule-input-group label {
    display: block;
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 5px;
    color: #0f0f0f;
}

.schedule-input {
    width: 100%;
    padding: 13px 17px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-sizing: border-box;
    font-size: 15px;
    font-weight: 400;
}

.schedule-timezone-info {
    font-size: 12px;
    font-weight: 400;
    color: #606060;
    margin-top: 5px;
    text-align: center;
}

.nice-studio-edit-video-visibility-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: none; 
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-sizing: border-box;
}

.nice-studio-edit-video-visibility-modal-content {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    width: 100%;          
    max-width: 500px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow: hidden;
}

.nice-studio-edit-video-visibility-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    color: #0f0f0f;
}

.nice-studio-edit-video-visibility-close-icon {
    width: 29px;
    height: 29px;
    fill: #0f0f0f;
    padding: 6px;
    border-radius: 999px;
    outline: 1px solid #d6d6d6;
    background-color: #fff;
    cursor: pointer;
}

.nice-studio-edit-video-visibility-close-icon:hover {
    background-color: rgba(236, 236, 236, 0.67)
}

.nice-studio-edit-video-visibility-modal-body {
    padding: 20px;
    overflow-y: auto;
}

@media (max-width: 600px) {
    .nice-studio-edit-video-visibility-modal-content {
        width: 100%;
        height: 100%;
        border-radius: 0;
        max-height: 100vh;
    }
}
.watch-main-content-container {
    display: flex;
    padding-left: 40px;
    padding-right: 40px;
    gap: 25px;
    width: 100%; 
    margin: 0 auto;
}

.watching-videp-concept-main {
    flex: 3;
    min-width: 0; 
}

.video-player-container {
    width: 100%;
    background-color: #f2f2f2;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 5px;
}
.video-player-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nice-video-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: #0f0f0f;
    padding-top: 10px;
    margin-bottom: 7px;
}
.separator-for-video-bottom {
    border: 0;
    border-top: 1px solid #e5e5e5;
    margin: 15px 0;
}
.watch-page-main-channel-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    top: 0px;
    position: relative;
}
.watch-page-info-channel-name{
    color: #0f0f0f;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: -0px;
}

.description-and-comments-placeholder {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.nice-description-for-video{
    background: #f2f2f2;
    padding: 15px;
    border-radius: 12px;
    cursor: default;
    margin-bottom: 15px;
}
.nice-description-for-video p{
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #131313;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.recommended-right-sidebar {
    min-width: 400px;
    max-width: 400px;
    height: max-content;
    max-height: 100%;
}

.recommended-sidebar-headline {
    display: flex;
    flex-direction: column;
    padding-bottom: 13px;
}
.watching-sidebar-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.42px;
    color: #0f0f0f;
    white-space: nowrap;       
    overflow: hidden;          
    text-overflow: ellipsis;   
    margin-bottom: 10px;
}

.watching-sidebar-videos-info {
    color: #0f0f0f;
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
    letter-spacing: -0.42px;
    flex-grow: 1;
    opacity: .7;
}

.recommended-videos-list-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    cursor: pointer;
    background-color: transparent;
    padding: 0px;
}


.thumbnail-of-the-recommended-video {
    width: 168px;
    height: 94px;
    aspect-ratio: 16 / 9; 
    object-fit: cover;
    margin-right: 8px;
    border-radius: 12px;
}

.suggested-video-details {
    padding-right: 10px;
    position: relative;
    flex-grow: 1;
    width: 100%;
    flex-wrap: wrap;
}

.suggested-video-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    color: #0f0f0f;
    display: -webkit-box;
    -webkit-line-clamp: 2;  
    -webkit-box-orient: vertical;
    overflow: hidden;            
    text-overflow: ellipsis;    
}

.nice-video-author-stats{
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 13px;
    color: #606060;
    margin-bottom: 3px;
}
.nice-video-author-stats > svg{
    width: 14px;
    height: 14px;
    color: #606060;
    margin-left: 5px;
}
.nice-video-author-stats:last-child{
    margin-bottom: 0px;
    flex-wrap: wrap;
}

@media (max-width: 1200px) {
    .watch-main-content-container {
        padding: 16px;
        gap: 16px;
    }

    .watching-videp-concept-main {
        flex: 2;
    }

    .recommended-right-sidebar {
        flex: 1;
        min-width: 250px;
    }
    
    .navbar-center {
        flex-grow: 0.8;
    }
}
@media (max-width: 999px) {
    .recommended-right-sidebar {
        min-width: 100% !important;
        max-width: 100% !important;
    }
}
@media (max-width: 1000px) {
    .navbar-icon, .fa-th {
        display: none;
    }

    .watch-main-content-container {
        flex-direction: column;
    }
    
    .watching-videp-concept-main, .recommended-right-sidebar {
        flex: none;
        width: 100%;
        min-width: unset;
    }
    
    .recommended-right-sidebar {
        margin-top: 20px;
    }
}



@media(max-width:768px){
    .plyr--video, .video-container{
        border-radius: 0px !important;
    }
}
@media (max-width: 600px) {
    .watch-main-content-container{
        padding: 0px !important;
    }
    .video-player-container, .plyr--video, .video-container {
        border-radius: 0px !important;
    }
    .nice-video-title {
        font-size: 18px;
        padding-left: 12px;
        padding-right: 12px;
    }
    .suggested-video-title {
        -webkit-line-clamp: 2;
    }
    .nice-description-for-video{
        border-radius: 0px;
        padding: 12px;
        margin-bottom: 0px;
    }
    .recommended-right-sidebar {
        margin: 0 auto;
        padding: 0px 12px;
    }
    
    .recommended-videos-list-container {
        flex-direction: column; 
    }
    
    .thumbnail-of-the-recommended-video {
        margin-right: 15px;
        margin-bottom: 5px;
        width: 100%;
        height: 100%;
        margin-bottom: 7px;
    }

    .nice-video-author-stats{
        opacity: 0.8;
    }
    .nice-video-author-stats > svg{
        width: 11px;
        height: 11px;
    }
    .suggested-video-title{
        line-height: 18px;
        margin-bottom: 4px;
        font-weight: 400;
        font-size: 14px;
    }
    .watching-sidebar-title{
        margin-bottom: 5px;
    }
    .nice-watch-recomended-target-click{
        display: flex;
        flex-direction: column;
    }
}
.nice-studio-custom-profile-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #fff;
}

.nice-studio-custom-profile-header {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px 20px;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}

.nice-studio-custom-profile-header-buttons button,
.nice-studio-custom-profile-header-buttons > a {
    padding: 9px 20px;
    margin-left: 6px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
}

.nice-studio-custom-profile-header-buttons .nice-studio-button-preview,
.nice-studio-custom-profile-header-buttons > a {
    background-color: transparent;
    border-color: #e5e5e5;
    color: #0f0f0f;
}

.nice-studio-custom-profile-header-buttons .nice-studio-button-publish {
    background-color: #0f0f0f;
    color: #ffffff;
}
.nice-studio-custom-profile-header-buttons .nice-studio-button-publish:hover,
.nice-studio-custom-profile-header-buttons > a:hover{
    opacity: .8;
}

.nice-studio-custom-profile-main-content {
    flex-grow: 1;
    width: 100%;
}

.nice-studio-custom-profile-tabs {
    display: flex;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 24px;
}

.nice-studio-custom-profile-tab,
.nice-studio-custom-profile-tab > a {
    padding: 13px 15px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #606060;
    border-bottom: 3px solid transparent;
    user-select: none;
}

.nice-studio-tab-active,
.nice-studio-tab-active > a {
    color: #0f0f0f;
    border-bottom-color: #0f0f0f;
}

.nice-studio-custom-profile-section-title {
        font-size: 23px;
        font-weight: 500;
        color: #0f0f0f;
        padding: 15px;
}

.nice-studio-custom-profile-form-section {
    border-radius: 4px;
    padding-bottom: 10px;
}

.nice-studio-custom-profile-sub-heading {
    font-size: 16px;
    font-weight: 500;
    color: #0f0f0f;
    margin-bottom: 8px;
}

.nice-studio-custom-profile-sub-text {
    font-size: 13px;
    color: #606060;
    margin-bottom: 16px;
    line-height: 1.4;
}

.nice-studio-custom-profile-info-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 4px;
    color: #606060;
    cursor: help;
}

.nice-studio-custom-profile-content-layout {
    display: flex;
    align-items: flex-start;
}

.nice-studio-custom-profile-image-container {
    width: 170px; 
    flex-shrink: 0;
    padding: 10px;
    margin-right: 20px;
    background-color: #f2f2f2;
    text-align: center;
    justify-content: center;
    align-items: center;
    justify-items: center;
    border-radius: 12px;
    user-select: none;
    pointer-events: none;
}

.nice-studio-custom-profile-image-box {
    width: 100%;
    padding-top: 56.25%; 
    background-color: #f0f0f0;
    border: 1px dashed #e5e5e5;
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
}

.nice-studio-custom-profile-image-box.nice-studio-profile-picture {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    padding-top: 0;
    margin-bottom: 0;
    background-color: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.nice-studio-custom-profile-image-box.nice-studio-profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.nice-studio-custom-profile-image-info {
    flex-grow: 1;
}

.nice-studio-custom-profile-image-buttons span {
    padding: 9px 17px;
    margin-right: 8px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    background-color: #f2f2f2;
    color: #0f0f0f;
    border: none;
    outline: none;
}
.nice-studio-custom-profile-image-buttons span:hover{
        background-color: #dbdbdbb2;
}
.nice-studio-custom-profile-input-group {
    margin-bottom: 20px;
}

.nice-studio-custom-profile-input-label {
    font-size: 14px;
    font-weight: 500;
    color: #0f0f0f;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
}

.nice-studio-custom-profile-input-field {
    width: 100%;
    padding: 12px;
    border: 1px solid #e5e5e5;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 400;
    margin-top: 4px;
}

.nice-studio-custom-profile-input-field:focus {
    outline: none;
    border-color: #0f0f0f;
}

.nice-studio-custom-profile-handle-url {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #606060;
    margin-top: 4px;
}

.nice-studio-custom-profile-handle-url a {
    color: #065fd4;
    text-decoration: none;
    margin-left: 5px;
}

.nice-studio-custom-profile-handle-url a:hover {
    text-decoration: underline;
}

.nice-studio-custom-profile-description-text {
    font-size: 14px;
    font-weight: 400;
    color: #0f0f0f;
    white-space: pre-wrap;
    width: 100%;
    border-radius: 9px;
    border: 1px solid #e5e5e5;
    padding: 12px;
    outline: none;
    box-shadow: none;
    resize: none;
    min-height: 150px;
    max-height: 450px;
}
.nice-studio-custom-profile-description-text:focus{
    border: 1px solid #0f0f0f;
}
.nice-studio-custom-profile-url-field {
    font-size: 14px;
    color: #0f0f0f;
    background-color: #f0f0f0;
    padding: 12px;
    border-radius: 9px;
    border: 1px solid #e5e5e5;
}
.nice-studio-custom-profile-tab-content{
    max-width: 650px;
    width: 100%;
    padding: 0px 20px;
}
@media (max-width: 768px) {
    .nice-studio-custom-profile-header {
        padding: 10px 10px;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .nice-studio-custom-profile-content-layout {
        flex-direction: column;
        align-items: center;
    }

    .nice-studio-custom-profile-image-container {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .nice-studio-custom-profile-image-box {
        width: 80%;
        max-width: 300px;
    }
    
    .nice-studio-custom-profile-image-box.nice-studio-profile-picture {
        margin-bottom: 10px;
    }
    
    .nice-studio-custom-profile-image-info {
        width: 100%;
    }
    
    .nice-studio-custom-profile-image-buttons {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }
    
    .nice-studio-custom-profile-image-buttons button {
        flex-grow: 1;
        margin-right: 4px;
    }

    .nice-studio-custom-profile-tab {
        font-size: 13px;
    }
}
.nice-studio-page-container {
    display: grid;
    grid-template-columns: var(--nice-studio-page-sidebar-width) 1fr;
    grid-template-rows: var(--nice-studio-page-header-height) 1fr;
    grid-template-areas:
        "sidebar header"
        "sidebar main";
    min-height: 100vh;
}

.nice-studio-page-sidebar-wrapper {
    grid-area: sidebar;
    background-color: #fff;
    padding-bottom: 20px;
    overflow-y: auto;
    position: sticky; 
    top: 0;
    z-index: 10;
    border-right: 1px solid #e5e5e5;
}

.nice-studio-page-profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}
.nice-studio-page-profile-avatar-container {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
    background-color: #f2f2f2;
    border: 1px solid #e5e5e5;
}
.nice-studio-page-profile-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
    user-select: none;
    pointer-events: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.nice-studio-page-profile-title {
    font-size: 15px;
    line-height: 24px;
    color: #0f0f0f;
    font-weight: 500;
}
.channel-name-desktop-menu-div {
  display: flex;
  align-items: center;
  width: 100%;
}
.channel-name-desktop-menu-div > p {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: #606060;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}
.channel-name-desktop-menu-div > svg{
    width: 14px;
    height: 14px;
    fill: #606060;
    margin-left: 2px;
}

.nice-studio-page-nav-list {
    list-style: none;
    width: 100%;
}
.nice-studio-page-nav-item {
    margin: 0;
}
.nice-studio-page-nav-link {
    display: flex;
    align-items: center;
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 400;
    transition: background-color 0.2s;
    color: #0f0f0f;
}
.nice-studio-page-nav-icon {
    width: 23px;
    height: 23px;
    margin-right: 20px;
    text-align: center;
}
.nice-studio-page-nav-link:hover {
    background-color: #f9f9f9;
}
.nice-studio-page-active .nice-studio-page-nav-link {
    background-color: #f9f9f9;
    font-weight: 600;
}
.nice-studio-page-nav-icon > svg {
    fill: #0f0f0f;
}
.nice-studio-page-active .nice-studio-page-nav-icon > svg {
    fill: #0f0f0f;
}

.nice-studio-page-nav-bottom {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.nice-studio-page-mobile-nav {
    display: none;
}

.nice-studio-page-main-content {
    grid-area: main;
    padding: 0px 40px;
    max-width: 850px;
    width: 100%;
}
.nice-studio-page-title {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 30px;
}

.nice-studio-page-grid-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
    margin-bottom: 30px;
}

.nice-studio-page-card {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 25px;
    min-height: 400px;
    min-width: 350px;
    width: 100%;
}

.nice-studio-page-upload-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
    justify-content: center;
    height: max-content;
}
.nice-studio-page-illustration-box {
    width: 150px;
    height: 150px;
    color: #1a73e7; 
    font-size: 130px;
    line-height: 1;
}
.nice-studio-page-upload-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #606060;
    margin-bottom: 25px;
    width: 100%;
    max-width: 350px;
}
.nice-studio-page-button {
    padding: 10px 20px;
    border: none;
    color: #fff;
    background-color: #0f0f0f;
    font-weight: 500;
    cursor: pointer;
    border-radius: 999px;
    font-size: 14px;
    transition: background-color 0.2s;
}
.nice-studio-page-button:hover {
    background-color: #333;
}

.nice-studio-page-analytics-area {
    display: flex;
    flex-direction: column;
}
.nice-studio-page-section-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}
.nice-studio-page-small-title {
    font-size: 15px;
    font-weight: 500;
    color: #0f0f0f;
    margin-top: 15px;
    margin-bottom: -0px;
}
.nice-studio-page-metric {
    margin-bottom: 15px;
}
.nice-studio-page-metric-label {
    font-size: 14px;
    color: #606060;
    font-weight: 400;
}
.nice-studio-page-metric-value {
    font-size: 32px;
    font-weight: 400;
}
.nice-studio-page-divider {
    border-top: 1px solid #e5e5e5;
    margin: 15px 0;
}
.nice-studio-page-summary-period,
.nice-studio-page-popular-videos-period {
    font-size: 12px;
    color: #606060;
    margin-top: 5px;
    margin-bottom: 10px;
}
.nice-studio-page-popular-videos-period{
    margin-bottom: 15px;
}
.nice-studio-page-summary-list {
    list-style: none;
}
.nice-studio-page-summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    padding: 5px 0;
    color: #0f0f0f;
}
.nice-studio-page-summary-value {
    font-weight: 500;
}
.nice-studio-page-no-data-text {
    font-size: 13px;
    color: #0f0f0f;
    margin-bottom: 10px;
}
.nice-studio-page-no-data-text .dashboard-studio-video-title-48 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.nice-studio-page-no-data-text .nice-studio-page-summary-value {
    flex-shrink: 0;
    margin-left: 10px;
}
.nice-studio-page-analytics-btn {
    background-color: transparent;
    color: #0f0f0f;
    border: none;
    font-weight: 500;
    padding: 0;
    text-transform: capitalize;
    align-self: flex-start;
}
.nice-studio-page-analytics-btn:hover {
    text-decoration: underline;
    background-color: transparent;
}

@media (max-width: 1024px) {
    .nice-studio-page-container {
        grid-template-columns: 200px 1fr;
        --nice-studio-page-sidebar-width: 200px;
    }
    .nice-studio-page-grid-container {
        grid-template-columns: 1fr; 
    }
}

@media (max-width: 768px) {
    .nice-studio-page-container {
        grid-template-columns: 1fr;
        grid-template-rows: var(--nice-studio-page-header-height) auto 1fr;
        grid-template-areas:
            "mobile-nav"
            "main";
    }

    .nice-studio-page-sidebar-wrapper {
        display: none;
    }

    .nice-studio-page-mobile-nav {
        grid-area: mobile-nav;
        display: block;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap; 
        background-color: #fff;
        -webkit-overflow-scrolling: touch; 
        scrollbar-width: none;
        -ms-overflow-style: none;
        position: relative;
        border-bottom: 1px solid #e5e5e5;
    }
    .nice-studio-page-mobile-nav::-webkit-scrollbar {
        display: none;
    }
    .nice-studio-page-mobile-nav-list {
        display: inline-flex;
        list-style: none;
    }
    .nice-studio-page-mobile-nav .nice-studio-page-nav-item {
        margin: 0;
        flex-shrink: 0;
    }
    .nice-studio-page-mobile-nav .nice-studio-page-nav-link {
        padding: 10px 15px;
        border-radius: 0;
        font-size: 13px;
        border-bottom: 3px solid transparent;
    }
    .nice-studio-page-mobile-nav .nice-studio-page-nav-link ion-icon {
        display: none;
    }
    .nice-studio-page-mobile-nav .nice-studio-page-active .nice-studio-page-nav-link {
        background-color: transparent;
        border-bottom-color: #0f0f0f;
        font-weight: 500;
    }
    .nice-studio-page-main-content {
        padding: 20px 15px;
    }
    .nice-studio-page-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .nice-studio-page-grid-container {
        grid-template-columns: 1fr;
    }
    .nice-studio-page-card {
        min-height: auto;
        padding: 20px;
    }
    .nice-studio-page-upload-area {
            padding: 30px 15px;
    }
}
.channel-for-descriptions-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
    overflow: hidden; 
    -webkit-overflow-scrolling: touch;
}
.channel-for-descriptions-modal-content {
    position: fixed; 
    top: 50%;       
    left: 50%;      
    transform: translate(-50%, -50%) scale(0.9); 
    width: 90%;
    max-width: 550px; 
    max-height: 80vh; 
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    opacity: 0; 
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
.channel-for-descriptions-modal.active {
    display: block;
}
.channel-for-descriptions-modal.active .channel-for-descriptions-modal-content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1); 
}
.channel-for-descriptions-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 24px;
    flex-shrink: 0; 
    padding-bottom: 10px;
}
.channel-for-descriptions-modal-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: #0f0f0f;
    margin: 0;
}
.channel-for-descriptions-modal-close-btn {
    background: none;
    border: none;
    width: 29px;
    height: 29px;
    fill: #0f0f0f;
    padding: 6px;
    border-radius: 999px;
    outline: 1px solid #d6d6d6;
    background-color: #fff;
    margin-left: 10px;
    cursor: pointer;
}
.channel-for-descriptions-modal-close-btn:hover{
    outline: 1px solid #0f0f0f;
}
.channel-for-descriptions-modal-body-scrollable {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
    -webkit-overflow-scrolling: touch;
    position: relative;
}
.channel-for-descriptions-modal-body-scrollable::-webkit-scrollbar {
    width: 6px; 
    background: transparent;
}
.channel-for-descriptions-modal-body-scrollable::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.4);
    border-radius: 3px;
    transition: background-color 0.3s, opacity 0.3s;
    opacity: 0; 
}
.channel-for-descriptions-modal-body-scrollable:hover::-webkit-scrollbar-thumb,
.channel-for-descriptions-modal-body-scrollable.scrolling::-webkit-scrollbar-thumb {
    opacity: 1;
}
.channel-for-descriptions-modal-body-scrollable::-webkit-scrollbar-track {
    background: transparent;
}
.channel-for-descriptions-modal-section {
    padding-bottom: 10px;
}
.channel-for-descriptions-in-section {
    border-top: none;
}
.channel-for-descriptions-section-title {
    font-size: 20x;
    font-weight: 700;
    line-height: 28px;
    color: #0f0f0f;
    margin-bottom: 10px;
}
.channel-for-descriptions-section-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #0f0f0f;
    white-space: pre-wrap;
    word-wrap: break-word;
    margin-bottom: 15px;
}
.channel-for-descriptions-full-link-list, .channel-for-modal-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.channel-for-descriptions-full-link-list li, .channel-for-modal-info-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.channel-for-modal-link-icon {
    width: 24px;
    height: 24px;
    margin-right: 16px;
}
.channel-for-link-label {
    min-width: 80px;
    font-weight: 400;
    color: #606060;
    font-size: 0.9rem;
}
.channel-for-modal-link-url {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    text-decoration: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    flex-grow: 1;
    margin-left: 10px;
}
.channel-for-modal-info-icon {
    width: 25px;
    height: 25px;
    fill: #0f0f0f;
    margin-right: 16px;
    
}
.channel-for-modal-info-span-info{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #0f0f0f;
}
.channel-for-modal-info-list li a {
     color: #0f0f0f;
     font-size: 14px;
     line-height: 20px;
     font-weight: 400;
}
@media (max-width: 768px) {
    .channel-for-descriptions-modal-content {
        width: 100%; 
        height: 100%; 
        max-width: none;
        max-height: none;
        border-radius: 0; 
        top: 100%;
        left: 50%;
        transform: translate(-50%, 0);
    }
    .channel-for-descriptions-modal-body-scrollable{
        padding-bottom: 65px;
    }
    .channel-for-descriptions-modal.active .channel-for-descriptions-modal-content {
        transform: translate(-50%, -100%); 
    }
}
.channel-for-descriptions-modal * {
    text-align: left !important;
}
.empty-homepage-wrapper-for-content{
        height: 100%;
        width: 100%; 
        display: flex;
        justify-content: center;
        align-items: center;
}

.homepage-empty-content-centered-card {
    background-color: white;
    border-radius: 12px;
    padding: 20px 30px; 
    max-width: 550px; 
    width: 90%; 
    min-width: 250px; 
    box-sizing: border-box;
    text-align: center;
}

.homepage-empty-content-card-main-text {
    font-size: 21px;
    font-weight: 600;
    color: #0f0f0f;
    margin-top: 0;
    margin-bottom: 15px;
}

.homepage-empty-content-card-sub-text {
    font-size: 15px; 
    color: #606060;
    line-height: 20px;
    margin-top: 0;
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .homepage-empty-content-centered-card {
        padding: 15px 20px;
    }

    .homepage-empty-content-card-main-text {
        font-size: 18px;
    }

    .homepage-empty-content-card-sub-text {
        font-size: 14px;
    }
}
.nice-channel-post-container {
    max-width: 1300px; 
    margin: 0 auto;
    background-color: #fff;
}

.nice-channel-post-devam-et-link {
    color: #606060;
    font-weight: 500;
}


.nice-channel-post-main-content {
    width: 700px;
    padding: 10px 0;
}

.nice-channel-post-posts-feed {
    width: 100%; 
}

.nice-channel-post-item {
    margin-bottom: 24px;
    border: 1px solid #efefef;
    padding: 17px;
    border-radius: 12px;
}

.nice-channel-post-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.nice-channel-post-item-profile-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.nice-channel-post-item-profile-picture > img{
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 999px;
    user-select: none;
    pointer-events: none;
}

.nice-channel-post-item-channel-name {
    font-weight: 500;
    color: #0f0f0f;
}

.nice-channel-post-item-time-ago {
    color: #606060;
}

.nice-channel-post-item-more-options svg {
    width: 36px;
    height: 36px;
    fill: #606060;
    cursor: pointer;
    padding: 10px;
    border-radius: 999px;
}
.nice-channel-post-item-more-options svg:hover{
    background-color: #f2f2f2;
}
.nice-channel-post-text-content-body {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400px;
    color: #0f0f0f;
    margin-bottom: 12px;
    word-wrap: break-word;
    white-space: pre-wrap;
}

.nice-channel-post-item-media-preview {
    width: 100%;
    padding-bottom: 56.25%; 
    background-color: #f2f2f2;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-top: 12px;
    margin-bottom: 15px;
}

.nice-channel-post-shorts-image {
    background-size: contain;
    background-position: center center; 
    background-repeat: no-repeat;
}



@media (max-width: 1024px) {
    .nice-channel-post-container {
        width: 100%;
        padding-left: 14px;
        padding-right: 14px;
    }
    .nice-channel-post-main-content {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .nice-channel-post-posts-feed {
        width: 100%;
    }
    .nice-channel-post-main-content {
        width: 100%;
    }
}

@media (max-width: 480px){
    .nice-channel-post-posts-feed {
        width: 100%;
    }
    .nice-channel-post-main-content {
        width: 100%;
    }
}
.user-submission-actions{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
}
.actions-post-btn-class{
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #0f0f0f;
    border-radius: 999px;
    background-color: #f2f2f2;
    cursor: pointer;
    transition-duration: 0.2s;
    padding: 8px 15px;
    user-select: none;
}
.actions-post-btn-class:hover{
    background-color: #e0e0e0;
}
.actions-post-btn-class > ion-icon{
    font-size: 19px;
    margin-right: 6px;
    pointer-events: none;
    user-select: none;
}
.channel-wrapper-post-creation-card {
    background-color: #ffffff;
    border-radius: 12px;
    width: 100%;
    padding: 16px;
    border: 1px solid #e5e5e5;
    margin-bottom: 25px;
}

.channel-wrapper-post-header-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 12px;
}

.channel-wrapper-post-user-info {
    display: flex;
    align-items: center;
}

.channel-wrapper-post-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    background-color: #ccc;
    overflow: hidden;
}
.channel-wrapper-post-user-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.channel-wrapper-post-user-name {
    font-size: 14px;
    font-weight: 600;
    color: #0f0f0f;
}

.channel-wrapper-post-visibility-info {
    font-size: 14px;
    color: #606060;
    display: flex;
    align-items: center;
}

.channel-wrapper-post-visibility-label {
    margin-right: 4px;
    font-weight: 400;
}

.channel-wrapper-post-textarea {
    width: 100%;
    max-height: 250px; 
    border: none;
    resize: none;
    font-size: 16px;
    color: #0f0f0f;
    padding: 0;
    outline: none;
    background: transparent;
}
.channel-wrapper-post-textarea::placeholder {
    color: #606770;
}

.channel-wrapper-post-options-section {
    display: flex;
    flex-wrap: wrap; 
    gap: 12px;
    justify-content: flex-start;
}

.channel-wrapper-post-option-item > label {
    display: flex;
    align-items: center;
    padding: 10px 10px;
    border-radius: 999px;
    cursor: pointer;
    color: #0f0f0f;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.2s;
    user-select: none;
}

.channel-wrapper-post-option-item > label:hover {
    background-color: #f0f2f5;
}


.channel-wrapper-post-option-item > label svg {
    width: 24px;
    height: 24px;
    margin-right: 6px;
    fill: currentColor; 
}

.channel-wrapper-post-option-item.test svg path,
.channel-wrapper-post-option-item.video svg path {
    stroke-width: 0;
}
.channel-wrapper-post-option-item.test,
.channel-wrapper-post-option-item.video {
    color: #0f0f0f;
}
.channel-wrapper-post-option-item.test svg {
    color: #38a169; 
}
.channel-wrapper-post-option-item.video svg {
    color: #fa513e;
}


.channel-wrapper-post-actions-section {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.channel-wrapper-post-actions-cancel-button {
    background: transparent;
    border: none;
    color: #0f0f0f;
    font-size: 14px;
    font-weight: 500;
    padding: 0px 15px;
    cursor: pointer;
    border-radius: 999px;
    transition: background-color 0.2s;
    margin-right: 5px;
    height: 36px;
}

.channel-wrapper-post-actions-cancel-button:hover {
    background-color: #f0f2f5;
}

.channel-wrapper-post-actions-publish-dropdown {
    position: relative;
    display: inline-flex;
}

.channel-wrapper-post-actions-publish-button {
    height: 36px;
    padding: 0 16px;
    border: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    border-radius: 999px;
}
.channel-wrapper-post-actions-publish-button {
    background-color: #065fd4; 
    color: #fff; 
    border-radius: 999px;
    padding-right: 12px;
}
.channel-wrapper-post-actions-publish-button:hover {
    background-color: #d8d9da;
}

.channel-wrapper-post-actions-publish-dropdown {
    border-radius: 999px;
    overflow: hidden;
    line-height: 1;
}
.channel-wrapper-post-actions-publish-button {
    border-radius: 0;
}
.dropdown-toggle {
    border-radius: 0;
    margin-left: 0;
    border-left: 1px solid #d8d9da;
}
.channel-wrapper-post-actions-publish-button, .dropdown-toggle {
    background-color: #065fd4; 
    color: #fff; 
}
.channel-wrapper-post-actions-publish-button:hover, .dropdown-toggle:hover {
    background-color: #0c57b8ff;
}
.nice-channel-featured-video-view-container {
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
    width: 100%;
}
.nice-channel-featured-video-view-card {
    display: flex;
    background-color: #ffffff;
    overflow: hidden; 
}
.nice-channel-featured-video-view-thumbnail-wrapper {
    flex-shrink: 0;
    width: 380px; 
    position: relative;
    padding-bottom: 213.75px;
    height: 0;
    overflow: hidden;
}
.nice-channel-featured-video-view-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}
.nice-channel-featured-video-view-duration {
    position: absolute;
    bottom: 10px;
    right: 6px;
    background-color: rgba(0, 0, 0, 0.63);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}
.nice-channel-featured-video-view-content-area {
    padding: 10px 20px;
    flex-grow: 1;
    display: block; 
    flex-direction: column;
    justify-content: space-between;
}
.nice-channel-featured-video-view-title {
    font-size: 18px; 
    font-weight: 500; 
    margin-top: 0;
    margin-bottom: 5px;
    color: #0f0f0f; 
    line-height: 24px;
    max-height: 2.6em;
    overflow: hidden;
    text-overflow: ellipsis; 
}
.nice-channel-featured-video-view-meta {
    font-size: 12px; 
    color: #606060;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 400;
    text-overflow: ellipsis; 
}
.nice-channel-featured-video-view-description-wrapper {
    display: block;
    margin-top: auto;
}
.nice-channel-featured-video-view-description-text {
    font-size: 13px;
    color: #606060;
    line-height: 1.5;
    margin-bottom: 10px;
    max-height: 4.5em;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nice-channel-featured-video-view-read-more {
    display: inline-block; 
    font-size: 11px;
    font-weight: 500; 
    color: #ffff;
    background-color: #1a73e6;
    text-decoration: none;
    margin-bottom: 0;
    border-radius: 999px;
    padding: 8px 16px;
}
.nice-channel-featured-video-view-read-more:hover {
    opacity: .85;
}
@media (max-width: 768px) {
    .nice-channel-featured-video-view-card {
        flex-direction: column;
        max-width: 100%;
        border-radius: 0;
        box-shadow: none; 
    }

    .nice-channel-featured-video-view-thumbnail-wrapper {
        width: 100%;
        padding-bottom: 56.25%; 
    }
    .nice-channel-featured-video-view-container{
        display: block;
        padding-bottom: 0px;
        margin-bottom: 15px;
    }

    .nice-channel-featured-video-view-thumbnail-image {
        border-radius: 12px;
    }

    .nice-channel-featured-video-view-content-area {
        padding: 10px 0px;
    }

    .nice-channel-featured-video-view-title {
        font-size: 18px;
        margin-bottom: 3px;
        max-height: 2.6em; 
    }

    .nice-channel-featured-video-view-meta {
        font-size: 12px;
        margin-bottom: 5px;
    }

    .nice-channel-featured-video-view-description-wrapper {
        display: none;
    }
}
.authLoginModal, .authSignUpModal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.authLoginModal-content, .authSignUpModal-content {
    background: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 460px;
    max-width: 100%;
    max-height: 100%; 
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 20px;
}

.authLoginModal-header, .autnSignUpModal-header {
    padding: 10px;
    padding-bottom: 10px;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: default;
}
.authLoginModal-header > img{
    width: auto;
    height: 38px;
    cursor: default;
    user-select: none;
    pointer-events: none;
    object-fit: cover;
}

.authLoginModal-body h2,
.authSignUpModal-body h2 {
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    color: #0f0f0f;
    display: flex;
    align-items: center;
}

.authLoginModal-close svg, .authSignUpModal-close svg {
    width: 29px;
    height: 29px;
    fill: #0f0f0f;
    cursor: pointer;
    padding: 7px;
    outline: 1px solid #e5e5e5;
    background-color: #fff;
    transition-duration: 0.2s;
}
.authLoginModal-close svg:hover, .authSignUpModal-close svg:hover{
    opacity: .85;
}

.authLoginModal-body, .authSignUpModal-body {
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
    max-height: 70vh;
}
.authLoginModal-body > form, .authSignUpModal-body > form{
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.authSignUpModal-body > p{
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #0f0f0f;
}
.authLoginModal-input, #authSignUpModalForm input {
    padding: 13px 17px;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid #e5e5e5;
    outline: none;
}
.authLoginModal-input:focus, #authSignUpModalForm input:focus,
.authLoginModal-input:hover, #authSignUpModalForm input:hover{
    outline: 1px solid #0f0f0f;
}
.authServiceModal-btn {
    background-color: #0f0f0f;
    color: #fff;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
}
.authServiceModal-btn:hover{
    opacity: .85;
}

.authLoginModal-footer {
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

@media (max-width: 768px) {
    .authLoginModal-content, .authSignUpModal-content {
        width: 100%;
        height: 100%;
        margin: 0;
        border-radius: 0;
        justify-content: flex-start;
    }
    .authLoginModal-body, .authSignUpModal-body {
        max-height: calc(100% - 100px);
    }
}
#toast-container>div{
    box-shadow: none !important;
    border-radius: 0px !important;
}
.toast-message{
    font-size: 14px !important;
}
@media (max-width: 1024px) {
    .plyr__volume{
        display: none !important;
    }
}
.nice-history-carding-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 14px;
    color: #0f0f0f; 
}

.nice-history-carding-tabs {
    display: flex;
    flex-wrap: wrap; 
    gap: 10px;
    margin-bottom: 15px;
}

.nice-history-carding-tab {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    color: #0f0f0f;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    border-radius: 7px;
    user-select: none;
}

.nice-history-carding-tab-active {
    background-color: #0f0f0f; 
    color: #fff; 
    border: 1px solid transparent;
}

.nice-history-carding-date-title {
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
}
.delete-all-viewing-history{
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    color: #0f0f0f;
    display: flex;
    align-items: center;
    float: right;
    user-select: none;
    cursor: pointer;
}
.delete-all-viewing-history > svg{
    width: 17px;
    height: 17px;
    fill: #0f0f0f;
    margin-right: 5px;
}
.delete-all-viewing-history:hover{
    opacity: .75;
}
.nice-history-carding-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.nice-history-carding-item {
    display: flex;
    position: relative;
    flex-direction: column;
    padding-bottom: 5px;
}

.nice-history-carding-thumbnail-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    padding-top: 56.25%;
    
}
.nice-history-carding-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}
.nice-history-carding-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2px 4px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}
.nice-history-carding-details {
    flex-grow: 1;
    position: relative;
}
.nice-history-carding-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 15px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
}

.nice-history-carding-metadata {
    font-size: 13px;
    color: #606060;
    margin-bottom: 15px;
    
}

.nice-history-carding-channel > svg{
    width: 13px;
    height: 13px;
    fill: #606060;
    position: relative;
    top: 2px;
    margin-right: -4px;
}
.nice-history-carding-channel, .nice-history-carding-views {
    margin-right: 5px;
}

.nice-history-carding-description {
    font-size: 14px;
    color: #606060;
    line-height: 1.5;
    margin-bottom: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.nice-history-carding-link-description {
    color: #606060;
}
.nice-history-carding-view-date-history{
    font-size: 12px;
    font-weight: 400;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .nice-history-carding-item {
        flex-direction: row;
    }
    .nice-history-carding-thumbnail-wrapper {
        width: 360px;
        max-width: 360px;
        min-width: 360px; 
        margin-right: 20px;
        margin-bottom: 0;
        padding-top: 202.5px;
    }

    .nice-history-carding-title {
        font-size: 18px;
    }

    .nice-history-carding-description {
        -webkit-line-clamp: 3;
    }
}
.searching-history-tagged{
    color: inherit;
    &:hover{
        text-decoration: underline;
    }
}
.nice-account-settings-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
}
.nice-account-settings-header {
    text-align: left;
    padding-bottom: 24px;
}
.nice-account-settings-header p {
    color: #606060;
    font-size: 14px;
    font-weight: 400;;
}
.nice-account-settings-content {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.profile-picture-for-account-settings{
    width: 50px;
    height: 50px;
    border-radius: 999px;
    user-select: none;
    pointer-events: none;
    object-fit: cover;
    border: 1px solid #e5e5e5;
}
.nice-account-settings-main, .nice-account-settings-side {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    height: max-content;
}
.nice-account-settings-main {
    flex: 2; 
    min-width: 300px; 
}
.nice-account-settings-side {
    flex: 1;
    min-width: 300px;
}
h1.nice-account-settings-page-title {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.nice-account-settings-page-title svg{
    width: 23px;
    height: 23px;
    color: #0f0f0f;
    margin-right: 10px;
    position: relative;
    top: 2px;
}
h2.nice-account-settings-section-title {
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 16px 0;
}
.nice-account-settings-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e5e5;
}
.nice-account-settings-intro-text {
    max-width: 60%;
}
.nice-account-settings-intro-text p {
    font-size: 0.9em;
    color: #606060;
    margin-top: 8px;
}
.nice-account-settings-intro-image {
    width: 120px;
    height: 120px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" fill="%23fce8e6"/><path d="M50 30c-5.52 0-10 4.48-10 10s4.48 10 10 10 10-4.48 10-10-4.48-10-10-10zm0 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zM50 55c-11.1 0-20 8.9-20 20h40c0-11.1-8.9-20-20-20z" fill="%23d93025"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
}
.nice-account-settings-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
    cursor: pointer;
    transition: background-color 0.2s;
}
.nice-account-settings-list-item:last-of-type {
    border-bottom: none;
}
.nice-account-settings-list-item:hover {
    background-color: #f2f2f2;
}
.nice-account-settings-item-label {
    font-size: 15px;
    color: #606060;
    min-width: 120px;
}
.nice-account-settings-item-value {
    flex-grow: 1;
    padding-left: 20px;
    font-size: 15px;
}
.nice-account-settings-item-value img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 16px;
    vertical-align: middle;
}
.nice-account-settings-item-action > svg{
    width: 16px;
    height: 16px;
    fill: #606060;
    top: 3px;
    position: relative;
}
.nice-account-settings-profiles {
    margin-top: 16px;
}
.nice-account-settings-profile-list {
    display: flex;
    gap: 24px;
    margin-top: 16px;
}
.nice-account-settings-profile-card {
    text-align: center;
    font-size: 0.9em;
}
.nice-account-settings-profile-card img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid transparent;
}
.nice-account-settings-other-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e5e5e5;
}

.nice-account-settings-other-options-image {
    width: 150px;
    height: 150px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" fill="%23e8f0fe"/><path d="M50 20c-16.57 0-30 13.43-30 30s13.43 30 30 30 30-13.43 30-30-13.43-30-30-30zm0 50c-11.05 0-20-8.95-20-20s8.95-20 20-20 20 8.95 20 20-8.95 20-20 20z" fill="%234285f4"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
}
.nice-account-settings-side-section {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid #e5e5e5;
}
.nice-account-settings-side-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.nice-account-settings-side-section h2 {
    margin-bottom: 12px;
}
.nice-account-settings-side-image-wrapper {
    text-align: center;
    margin-bottom: 16px;
}
.nice-account-settings-side-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    cursor: pointer;
}
.nice-account-settings-side-list-item:hover {
    background-color: #f2f2f2;
}
.nice-account-settings-side-item-text {
    font-size: 15px;
    font-weight: 400;
    color: #0f0f0f;
}
.nice-account-settings-side-item-text p {
    font-size: 12px;
    color: #606060;
    margin: 0;
}

@media (max-width: 992px) {
    .nice-account-settings-container{
        padding: 12px;
    }
    .nice-account-settings-content {
        flex-direction: column;
    }
    .nice-account-settings-main, .nice-account-settings-side {
        width: 100%;
        min-width: auto;
    }
    .nice-account-settings-intro {
        flex-direction: column-reverse;
        text-align: center;
    }
    .nice-account-settings-intro-text {
        max-width: 100%;
        margin-top: 24px;
    }
}

@media (max-width: 600px) {
    .nice-account-settings-container{
        padding: 12px;
    }
    .nice-account-settings-list-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .nice-account-settings-item-label {
        min-width: auto;
        margin-bottom: 4px;
    }

    .nice-account-settings-item-value {
        padding-left: 0;
    }

    .nice-account-settings-item-action {
        align-self: flex-end;
        margin-top: -20px;
    }

    .nice-account-settings-other-options {
        flex-direction: column;
        text-align: center;
    }

    .nice-account-settings-other-options-image {
        order: -1; 
        margin-bottom: 16px;
    }
}
.nice-account-next-page {
    width: 100%;
    max-width: 100%;
}
.nice-account-next-page-header {
    position: relative;
    width: 100%;
    height: 56px;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    margin-bottom: 25px !important;

}
.nice-account-next-page-header > a{
    display: flex;
    align-items: center;
    color: #0f0f0f;
    width: 600px;
    max-width: 100%;
    margin: 0 auto;
}
.nice-account-next-page-header > a svg {
    width: 24px;
    height: 24px;
    color: #0f0f0f;
    cursor: pointer;
    line-height: 0;
    margin-right: 15px;
}

.nice-account-next-page-header-title {
    font-size: 20px;
    color: #0f0f0f;
    font-weight: 500;
}

.nice-account-next-page-card {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 32px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
@media (max-width: 599px) {
    .nice-account-next-page-main-content {
        padding: 0;
    }
    
    .nice-account-next-page-card {
        border: none;
        border-radius: 0;
        padding: 16px;
        max-width: none;
        margin: 0;
    }
    .nice-account-next-page-header{
        padding: 14px;
    }
}
.nice-account-next-page-description {
    font-size: 14px;
    color: #606060;
    margin-bottom: 24px;
    line-height: 1.4;
}

.nice-account-next-page-input-group {
    margin-bottom: 16px;
}

.nice-account-next-page-input {
    width: 100%;
    padding: 18px 16px; 
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 14px;
    color: #0f0f0f;
    outline: none;
    transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    line-height: 1.25;
}

.nice-account-next-page-input::placeholder {
    color: #606060;
}
.nice-account-next-page-input:focus,
.nice-account-next-page-input:hover {
    border-color: #0f0f0f;
}
.nice-account-next-page-who-can-see {
    margin-top: 32px;
}
.nice-account-next-page-who-can-see-title {
    font-size: 14px;
    color: #0f0f0f;
    font-weight: 500;
    margin-bottom: 16px;
}
.nice-account-next-page-who-can-see-text {
    display: flex;
    align-items: flex-start;  
    font-size: 14px;
    color: #606060;
    line-height: 1.4;
    margin-bottom: 10px;
    gap: 10px;
}

.nice-account-next-page-who-can-see-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0; 
    color: #606060;
}

.nice-account-next-page-button-area {
    display: flex;
    justify-content: flex-end;
    margin-top: 32px;
}

.nice-account-next-page-button {
    min-width: 88px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    margin-left: 8px;
    transition: background-color 0.15s ease-in-out;
    border: none;
    text-decoration: none;
    display: inline-block;
    border-radius: 999px;
}

.nice-account-next-page-button-cancel {
    color: #0f0f0f;
    background-color: transparent;
}

.nice-account-next-page-button-cancel:hover {
    opacity: .75;
}

.nice-account-next-page-button-save {
    color: #fff;
    background-color: #1a73e7;
    user-select: none;
}
.nice-account-next-page-button-save:hover{
    opacity: .75;
}
.nice-gender-radio-option {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 16px; 
    padding: 8px 0;
    user-select: none;
}
.nice-gender-radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.nice-gender-custom-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #555; 
    margin-right: 10px;
    position: relative;
    transition: all 0.2s ease-in-out;
    box-sizing: border-box;
    flex-shrink: 0;
}
.nice-gender-radio-option:hover .nice-gender-custom-radio {
    border-color: #1a73e7; 
}
.nice-gender-custom-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1a73e7; 
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}
.nice-gender-radio-option input[type="radio"]:checked + .nice-gender-custom-radio {
    border-color: #1a73e7;
}

.nice-gender-radio-option input[type="radio"]:checked + .nice-gender-custom-radio::after {
    opacity: 1;
}
@media (max-width: 600px) {
    .nice-gender-radio-option {
        font-size: 15px; 
    }
    .nice-gender-custom-radio {
        width: 22px;
        height: 22px;
    }
    .nice-gender-custom-radio::after {
        width: 12px;
        height: 12px;
    }
}
.nice-account-settings-yourdata-header {
    max-width: 600px;
    width: 100%;
    text-align: center;
    margin-bottom: 48px;
    margin: 0 auto;
}
.nice-account-settings-yourdata-header h1 {
    font-size: 22px;
    font-weight: 400;
    color: #0f0f0f;
    margin: 0 auto 32px;
    max-width: 600px;
}
.nice-account-settings-yourdata-illustration {
    width: 100%;
    max-width: 350px;
    height: max-content;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}
.nice-account-settings-yourdata-illustration > img{
    width: 100%;
    user-select: none;
    pointer-events: none;
}
.nice-account-settings-yourdata-card {
    max-width: 600px; 
    width: 100%;
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 24px;
    box-sizing: border-box;
    margin: 0 auto;
}
.nice-account-settings-yourdata-card-title {
    font-size: 18px;
    font-weight: 500;
    color: #0f0f0f;
    margin: 0 0 8px 0;
}
.nice-account-settings-yourdata-card-description {
    font-size: 14px;
    color: #606060;
    margin: 0 0 24px 0;
}
.nice-account-settings-yourdata-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    cursor: pointer;
    color: #0f0f0f;
    transition: background-color 0.2s;
}
.nice-account-settings-yourdata-list-item:hover {
    background-color: #f2f2f2;
}
.nice-account-settings-yourdata-item-icon {
    color: #0f0f0f; 
    margin-right: 16px;
    line-height: 1; 
    width: 22px;
    height: 22px;
}
.nice-account-settings-yourdata-item-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.nice-account-settings-yourdata-item-title {
    font-size: 14px; 
    font-weight: 400;
    color: #0f0f0f;
    margin-bottom: 2px;
}
.nice-account-settings-yourdata-item-detail {
    font-size: 12px; 
    color: #606060;
}
.nice-account-settings-yourdata-item-arrow {
    width: 18px;
    height: 18px;
    color: #606060;
    line-height: 1;
}
.nice-account-settings-yourdata-item-other {
    color: #0f0f0f; 
    font-weight: 500;
}
.nice-account-settings-yourdata-item-other .nice-account-settings-yourdata-item-arrow {
    color: #0f0f0f;
}
.nice-account-settings-yourdata-item-divider {
    height: 1px;
    background-color: #e5e5e5; 
    margin: 0; 
    display: none; 
}
@media (max-width: 768px) {
    .nice-account-settings-yourdata-container {
        padding: 24px 12px;
    }
    .nice-account-settings-yourdata-header {
        margin-bottom: 32px;
    }
    .nice-account-settings-yourdata-header h1 {
        font-size: 1.3rem;
    }
    .nice-account-settings-yourdata-card {
        padding: 16px;
    }
    .nice-account-settings-yourdata-card-title {
        font-size: 1rem;
    }
    .nice-account-settings-yourdata-list-item {
        padding: 10px 0;
    }
}
@media (max-width: 480px) {
    .nice-account-settings-yourdata-header h1 {
        font-size: 1.1rem;
    }
    .nice-account-settings-yourdata-item-title {
        font-size: 0.8125rem;
    }
    .nice-account-settings-yourdata-item-detail {
        font-size: 0.6875rem;
    }
}
.studio-subtitles-language-select {
  position: relative;
}

.studio-subtitles-language-select input[readonly] {
  background: #f0f0f0;
  color: #0f0f0f;
}
.studio-subtitles-language-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 250px;
  overflow-y: auto;
  border: 1px solid #e5e5e5;
  border-top: none;
  background: #fff;
  border-radius: 7px;
  z-index: 100;
  display: none;
}
.studio-subtitles-language-option {
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.1s;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #0f0f0f;
}
.studio-subtitles-language-option:hover {
  background: #f2f2f2;
}
.studio-subtitles-language-option.no-results {
  color: #0f0f0f;
  cursor: default;
  padding: 25px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}
.studio-subtitles-language-select.active .studio-subtitles-language-dropdown {
  display: block;
}
.filepond--credits{
    display: none !important;
    user-select: none !important;
    pointer-events: none !important;
}
.nice-analytics-container-wrap {
    width: 100%;
}
.nice-analytics-container-wrap .nice-analytic-metric-cards-header-title {
    font-size: 23px;
    font-weight: 500;
    color: #0f0f0f;
    padding: 15px;
}
.nice-analytics-container-wrap .nice-analytic-metric-cards-nav-tabs {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 30px;
    padding: 0px 15px;
}
.nice-analytics-container-wrap .nice-analytic-metric-cards-nav-tab-item {
    display: inline-block;
    padding: 10px 16px;
    font-size: 15px;
    color: #0f0f0f;
    font-weight: 500;
    cursor: pointer;
    border-bottom: 3px solid transparent;
}
.nice-analytics-container-wrap .nice-analytic-metric-cards-nav-tab-item.metric-nav-active {
    color: #0f0f0f;
    border-bottom-color: #0f0f0f;
}
.nice-analytics-container-wrap .nice-analytic-metric-cards-content-layout {
    max-width: 1100px;
    width: 100%;
    display: grid;
    gap: 40px;
    grid-template-columns: 3fr 1fr;
    padding: 15px;
}
@media (max-width: 992px) {
    .nice-analytics-container-wrap .nice-analytic-metric-cards-content-layout {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.nice-analytics-container-wrap .nice-analytic-metric-cards-content-left-panel {
    min-width: 0;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding-top: 15px;
    max-height: max-content;
}
.nice-analytics-container-wrap .nice-analytic-metric-cards-content-summary-card {
    font-size: 27px;
    line-height: 30px;
    font-weight: 800;
    color: #0f0f0f;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: -.032em;
    text-overflow: clip;
    padding: 15px;
}
.nice-analytics-container-wrap .nice-analytic-nice-analytic-metric-cards-metric-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    background-color: #fff;
    margin-bottom: 30px;
}
.nice-analytics-container-wrap .nice-analytic-metric-cards-metric-card {
    background-color: #f9f9f9;
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    user-select: none;
    pointer-events: none;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}
.nice-analytics-container-wrap .nice-analytic-metric-cards-metric-card:first-child{
    border-right: 1px solid #e5e5e5;
}
.nice-analytics-container-wrap .nice-analytic-metric-cards-metric-card:last-child{
    border-left: 1px solid #e5e5e5;
}
.nice-analytics-container-wrap .nice-analytic-metric-cards-metric-card .nice-analytic-realtime-label {
    font-size: 13px;
    font-weight: 500;
    color: #606060;
    margin-bottom: 5px;
}
.nice-analytics-container-wrap .nice-analytic-metric-cards-metric-card .nice-analytic-realtime-value {
    font-size: 26px;
    font-weight: 400;
    color: #0f0f0f;
    letter-spacing: -.032em;
}
.nice-analytics-container-wrap .nice-analytic-right-panel {
    min-width: 0;
}
.nice-analytics-container-wrap .nice-analytic-realtime-card {
    border: 1px solid #e5e5e5;
    padding: 20px;
    border-radius: 12px;

}
.nice-analytics-container-wrap .nice-analytic-realtime-title {
    font-size: 17px;
    color: #0f0f0f;
    font-weight: 500;
    margin-bottom: 10px;
}
.nice-analytics-container-wrap .nice-analytic-realtime-metric {
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
}
.nice-analytics-container-wrap .nice-analytic-realtime-metric:last-child {
    border-bottom: none;
}
.nice-analytics-container-wrap .nice-analytic-realtime-metric .nice-analytic-realtime-value {
    font-size: 18px;
    font-weight: 500;
    color: #0f0f0f;
    margin-bottom: 4px;
}
.nice-analytics-container-wrap .nice-analytic-realtime-metric .nice-analytic-realtime-label {
    font-size: 13px;
    color: #606060;
}
.watch-time-seconds-for-important-info{
    font-size: 13px;
    font-weight: 400;
    line-height: 17px;
    color: #606060;
    padding: 0px 15px;
    padding-bottom: 15px;
}
.nice-community-page-container {
    max-width: 100%;
    background-color: #ffffff;
}
.nice-community-page-header h1 {
    font-size: 25px;
    font-weight: 600;
    padding: 15px;
    margin: 0;
    margin-bottom: 7px;
}
.nice-community-page-tabs {
    display: flex;
    border-bottom: 1px solid #e5e5e5;
    padding-left: 15px;
    white-space: nowrap;
}
.nice-community-page-tab {
    padding: 13px 15px;
    cursor: pointer;
    color: #606060;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    user-select: none;
    flex-shrink: 0;
}
.nice-community-page-tab.nice-community-page-active {
    color: #0f0f0f;
}
.nice-community-page-tab.nice-community-page-active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #0f0f0f;
}
.nice-community-page-comment-row {
    display: flex;
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    gap: 15px;
    align-items: flex-start;
    width: 100%;
}
.nice-community-page-comment-row:hover {
    background-color: #f9f9f9;
}
.nice-community-page-avatar {
    flex-shrink: 0;
    margin-right: 0px;
}
.nice-community-page-avatar img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 999px;
    margin-bottom: 5px;
}
.nice-community-page-main-area {
    display: flex;
    flex-grow: 1;
    justify-content: space-between;
    align-items: flex-start;
    min-width: 0;
}
.nice-community-page-comment-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-right: 15px;
    min-width: 0;
    gap: 4px;
}
.nice-community-page-comment-meta {
    font-size: 13px;
    color: #606060;
    margin-bottom: 2px;
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    top: -3px;
}
.nice-community-page-comment-meta > a{
    color: inherit;
}
.nice-community-page-username {
    color: #606060;
    font-weight: 400;
    display: flex;
    align-items: center;
}
.nice-community-page-username:hover{
    color: #0f0f0f;
}
.nice-community-page-username > svg {
    width: 13px;
    height: 13px;
    fill: #606060;
    margin-left: 4px;
}
.nice-community-page-comment-text {
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    color: #0f0f0f;
    word-break: break-word;
    overflow-wrap: break-word;
    margin-bottom: 5px;
}
.nice-community-page-video-preview {
    display: flex;
    flex-shrink: 0;
    gap: 8px;
    align-items: center;
    width: 400px;
    text-decoration: none;
    color: #0f0f0f;
    padding: 5px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    background-color: #fff;
}
.nice-community-page-video-thumbnail {
    width: 120px;
    height: 68px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 12px;
    user-select: none;
    pointer-events: none;
}
.nice-community-page-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nice-community-page-video-title {
    font-size: 13px;
    line-height: 20px;
    font-weight: 400;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.nice-community-page-avatar-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
@media (max-width: 768px) {
    .nice-community-page-header h1 {
        padding-left: 16px;
        font-size: 20px;
    }
    .nice-community-page-tabs {
        padding-left: 16px;
    }
    .nice-community-page-comment-row {
        flex-direction: column;
        gap: 10px;
        padding: 12px 15px;
    }
    .nice-community-page-avatar-meta {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    .nice-community-page-avatar img {
        width: 33px;
        height: 33px;
    }
    .nice-community-page-comment-meta {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 13px;
        position: relative;
        top: -3px;
    }
    .nice-community-page-comment-body {
        padding-right: 0;
        width: 100%;
    }
    .nice-community-page-comment-text {
        font-size: 13px;
        line-height: 20px;
    }
    .nice-community-page-video-preview {
        width: 100%;
        flex-direction: row;
        gap: 12px;
        margin-top: 6px;
    }
    .nice-community-page-video-thumbnail {
        width: 120px;
        height: 68px;
        border-radius: 10px;
    }
    .nice-community-page-video-title {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }
}
.nice-community-page-content > div {
    display: none;
}

.nice-community-page-content > div.active {
    display: block;
}
.nice-playlist-container-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    background-color: #fff;
    border-radius: 12px;
    padding: 12px;
}
.nice-playlist-left-sidebar {
    position: sticky;
    top: 0;
    flex: 0 0 350px;
    background-color: #0f0f0f;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 12px;
    padding: 24px;
    max-height: max-content;
}
.nice-playlist-header-video {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    user-select: none;
    pointer-events: none;
}
.nice-playlist-header-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.nice-playlist-left-sidebar h2 {
    font-size: 21px;
    margin-bottom: 10px;
    align-self: flex-start;
}
.nice-playlist-video-playlist-info {
    align-self: flex-start;
    color: #ccc;
    font-size: 13px;
    line-height: 1.5;
}
.nice-playlist-video-right-content {
    flex: 1 1 0;
    min-width: 250px;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.nice-playlist-video-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.nice-playlist-video-item:hover {
    background-color: #f2f2f2;
}
.nice-playlist-video-thumbnail-container {
    position: relative;
    width: 150px;
    aspect-ratio: 16/9;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
}
.nice-playlist-video-thumbnail-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    pointer-events: none;
}
.nice-playlist-video-details-duration {
    position: absolute;
    bottom: 5px;
    right: 6px;
    background-color: rgba(0, 0, 0, 0.63);
    color: #fff;
    padding: 2px 6px;
    font-size: 12px;
    border-radius: 4px;
}
.nice-playlist-video-details {
    display: flex;
    flex-direction: column;
    min-width: 0;
    color: #0f0f0f;
}
.nice-playlist-video-details-title {
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nice-playlist-video-details-info {
    color: #606060;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.nice-playlist-video-details-info > svg{
    width: 12px;
    height: 12px;
    fill: #606060;
    position: relative;
    top: 2px;
}
@media (max-width: 900px) {
    .nice-playlist-container-wrap {
        flex-direction: column;
        padding: 0;
        border-radius: 0;
    }
    .nice-playlist-left-sidebar {
        flex: 1 1 100%;
        border-radius: 0;
        padding: 15px;
        position: static;
    }
    .nice-playlist-header-video {
        display: none;
    }
    .nice-playlist-video-right-content {
        flex: 1 1 100%;
        padding: 0px;
        border-radius: 0;
    }
    .nice-playlist-video-item {
        flex-direction: row;
        padding: 8px;
        align-items: flex-start;
    }
    .nice-playlist-video-thumbnail-container {
        width: 115px;
        height: 65px;
        border-radius: 12px;
    }
    .nice-playlist-video-details-title {
        font-size: 13px;
        line-height: 17px;
        white-space: normal;
    }
    .nice-playlist-video-details-info {
        font-size: 0.75rem;
        white-space: normal;
    }
    .nice-playlist-video-details-duration {
        font-size: 10px;
    }
}
@media (max-width: 600px) {
    .nice-playlist-video-item {
        gap: 10px;
        width: 100%;
    }
    .nice-playlist-video-thumbnail-container {
        width: 115px;
        height: 65px;
    }
    .nice-playlist-video-details-title {
        display: block;  
        max-width: 100%; 
        overflow: hidden; 
        text-overflow: ellipsis;
    }
    .nice-playlist-video-details-duration {
        font-size: 10px;
    }
    .nice-playlist-video-details-info {
        font-size: 0.7rem;
    }
}
.create-new-nice-channel {
    width: 100%;
    max-width: 600px;
    padding: 24px;
    box-sizing: border-box;
    margin-top: 5vh; 
    margin: 0 auto;
    border-radius: 12px;
    border: 1px solid #ddd;
    margin-top: 30px;
}

.create-new-nice-channel > h1{
    font-size: 22px;
    font-weight: 600;
    line-height: 20px;
    color: #060606;
    margin-bottom: 70px;
}
.create-new-channel-profile-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
    text-align: center;
}
.create-new-channel-profile-pictures-add {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}
.create-new-channel-profile-pictures-add-select-image-button {
    color: #065fd4; 
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 999px;
}
.create-new-channel-profile-pictures-add-select-image-button:hover{
    background-color: #3a89f125;
}
.create-new-channel-input-group {
    margin-bottom: 24px;
}
.create-new-channel-input-group label {
    display: block;
    font-size: 0.875rem;
    color: #606060;
    margin-bottom: 4px;
}
.create-new-channel-input-text-input {
    width: 100%;
    padding: 8px 0;
    font-size: 1rem;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    box-sizing: border-box;
    transition: border-bottom-color 0.3s;
}
.create-new-channel-input-text-input:focus {
    border-bottom-color: #065fd4;
}
.create-new-channel-input-wrapper {
    position: relative;
    margin-bottom: 16px;
}
.create-new-channel-input-wrapper input {
    padding: 14px 13px; 
    height: 56px;
    border: none;
    border: 1px solid #ddd;
    width: 100%;
    font-size: 15px;
    outline: none;
    border-radius: 8px;
}
.create-new-channel-input-wrapper input:focus {
    border: 1px solid #065fd4; 
}
.create-new-channel-input-wrapper input[value^="@"] + label {
    top: 8px;
    font-size: 0.75rem;
    color: #606060; 
}
.create-new-channel-info-text {
    font-size: 10px;
    color: #606060;
    line-height: 16px;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 15px;
}
.create-new-channel-info-text a {
    color: #065fd4;
    text-decoration: none;
}
.create-new-channel-footer-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 4px;
}
.nice-new-channel-in-channel-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.2s;
    border-radius: 999px;
    background-color: transparent;
    text-decoration: none !important;
}

.nice-new-channel-in-cancel-button {
    background-color: transparent;
    color: #0f0f0f;
}

.nice-new-channel-in-create-channel-button {
    color: #065fd4;
    background: transparent;
}
.nice-new-channel-in-create-channel-button:hover{
    background-color: #3a89f125;
}

.nice-new-channel-in-cancel-button:hover {
    background-color: #f2f2f2;
}

@media (max-width: 600px) {
    .create-new-nice-channel {
        padding: 24px; 
        margin-top: 0px;
        border: none;
        border-radius: 0;
    }

    .create-new-nice-channel > h1 {
        display: none;
    }

    .create-new-channel-profile-pictures-add {
        width: 80px; 
        height: 80px;
    }

    .create-new-channel-profile-pictures-add-select-image-button {
        font-size: 15px;
        font-weight: 400;
    }

    .create-new-channel-input-wrapper input, .create-new-channel-input-wrapper label {
        font-size: 17px;
        font-weight: 400;
        color: #0f0f0f;
    }

    .create-new-channel-footer-buttons {
        justify-content: space-between; 
        padding-top: 16px;
        margin-top: 16px;
    }

    .nice-new-channel-in-channel-btn {
        padding: 8px 12px;
        font-size: 0.8125rem;
    }
}
#errorUniqSeo_txt{
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #606060;
}
#errorUniqSeo_txt > b{
    color: #065fd4;
    cursor: pointer;
    font-weight: inherit;
}
#suggested_username{
    color: #065fd4;
    cursor: pointer;
    font-weight: inherit;
}
#remove_avatar_btn{
    padding: 5px 20px;
    border: none;
    color: #ff1932;
    background-color: transparent;
    outline: none;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 400;
    line-height: 16px;
    margin-bottom: 10px;
    cursor: pointer;
    border: 1px solid #ddd;
}
#remove_avatar_btn:hover{
    background-color: #fdbee4b6;
    border: 1px solid transparent;
}
@media (max-width: 767px) {
.nice-wrapper-for-res-bottom-menu {
    display: flex;
    position: fixed;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 55px;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
}

.nice-for-res-bottom-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #0f0f0f;
    font-size: 11px;
    text-decoration: none;
    flex: 1;
}
.create-a-upload-video{
    display: none;
}

.nice-for-res-bottom-menu-item svg,
.nice-for-res-bottom-menu-item > img {
    width: 23px;
    height: 23px;
    fill: #0f0f0f;
    margin-bottom: 2px;
    transition: fill 0.2s;
    object-fit: cover;
}
.nice-for-res-bottom-menu-item > img{
    border-radius: 999px;
    border: 1px solid #e5e5e5;
}
.nice-for-res-bottom-menu-item.active {
    color: #0f0f0f;
    font-weight: 600;
}

.nice-for-res-bottom-menu-item.active svg {
    fill: #0f0f0f;
}
}
@media (min-width: 768px) {
.nice-wrapper-for-res-bottom-menu {
    display: none;
}
}
.welcome-auth-info-texting{
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
    color: #0f0f0f;
    width: max-content;
}
.welcome-auth-info-texting:hover{
    text-decoration: underline;
}
#authSignUpModalToastContainer {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
}
.authSignUpModal-toast {
    min-width: 240px;
    max-width: 400px;
    background-color: #333;
    color: #fff;
    padding: 10px 12px;
    margin-top: 10px;
    border-radius: 4px;
    opacity: 0.9;
    transition: all 0.5s ease;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    cursor: default;
}
.authSignUpModal-toast.success { 
    background-color: #28a745; 
}
.authSignUpModal-toast.error { 
    background-color: #CD201F ; 
}
.cm-s-monokai.CodeMirror{
    background-color: #f9f9f9 !important;
    color: #0f0f0f !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    border-radius: 12px !important;
}
.cm-s-monokai .CodeMirror-gutters{
    background-color: #ff1932 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}
.cm-s-monokai .CodeMirror-linenumber{
    color: #fff !important;
}
.CodeMirror-cursor {
border-left: 1px solid #0f0f0f !important;
}
.nice-admin-switch-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.nice-admin-switch-text-area {
    flex-grow: 1;
    margin-right: 20px;
}
.nice-admin-switch-main-text {
    font-size: 14px;
    font-weight: 500;
    color: #0f0f0f;
    line-height: 1.2;
}
.nice-admin-switch-description-text {
    font-size: 13px;
    color: #606060;
    display: block;
    margin-top: 4px;
}
.nice-admin-switch-input {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
    cursor: pointer;
    flex-shrink: 0; 
}
.nice-admin-switch-input input {
    opacity: 0;
    width: 0;
    height: 0;
}
.nice-admin-switch-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 28px;
}
.nice-admin-switch-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
.nice-admin-switch-input input:checked + .nice-admin-switch-slider {
    background-color: #1877f2;
}
.nice-admin-switch-input input:checked + .nice-admin-switch-slider:before {
    transform: translateX(22px);
}
.nice-admin-switch-slider.nice-admin-switch-round {
    border-radius: 34px;
}
.nice-admin-switch-slider.nice-admin-switch-round:before {
    border-radius: 50%;
}
.nice-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.nice-page-content-wrapper {
    padding-top: 40px; 
}
.page-content-for-back-button {
    display: none;
    align-items: center;
    gap: 8px;
    color: #0f0f0f;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 24px;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.page-content-for-back-button svg {
    fill: #0f0f0f;
    width: 24px;
    height: 24px;
}
.nice-page-content-hero-section {
    padding-bottom: 40px;
}
.nice-page-content-hero-section h1 {
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #0f0f0f;
}
.nice-page-content-hero-section p {
    margin-bottom: 15px;
    max-width: 800px;
}
.nice-page-content-list-tg {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.page-li-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #ccc;
    color: #0f0f0f;
    background-color: transparent;
}
.page-li-tag-active {
    background-color: #0f0f0f;
    color: #fff;
    border-color: #0f0f0f;
}
.nice-page-more-tools-section {
    background-color: #fff;
    padding: 30px 20px;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 30px;
}
.tools-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start; 
}
.tools-text-content {
    flex: 2; 
    min-width: 0; 
}
.tools-text-content p {
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    color: #0f0f0f;
    white-space: pre-wrap;
    word-wrap: break-word;
}
.nice-page-extra-explore-more {
    background-color: #fff;
    margin-bottom: 60px;
}
.nice-page-extra-explore-more h2 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
}
.nicepage-explore-titles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px;
}
.nice-explore-card-dg {
    border: 1px solid #e5e5e5;
    padding: 13px;
    border-radius: 2px;
    min-height: 120px;
    display: flex;
    align-items: center;      
    justify-content: center; 
    border-bottom: 5px solid #f2f2f2;
    cursor: pointer;
}
.nice-explore-card-dg > a{
    text-decoration: none;
    color: #0f0f0f;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nice-explore-card-dg > a h3 {
    font-size: 18px;
    font-weight: 500;
    color: #0f0f0f;
}
.nice-explore-card-dg > a svg{
    width: 26px;
    height: 26px;
    fill: #0f0f0f;
}
@media (max-width: 1024px) {
    .tools-content-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
}
@media (max-width: 768px) {
    .page-content-for-back-button {
        display: flex; 
    }
    .nice-page-content-wrapper {
        padding-top: 20px;
    }
    .nice-page-content-hero-section h1 {
        font-size: 22px;
    }
    .nicepage-explore-titles {
        grid-template-columns: 1fr; 
    }
    .tool-list-item {
        margin-top: 10px;
    }
}
@media (max-width: 480px) {
    .page-content-for-back-button {
        padding: 0 20px;
    }
    .page-li-tag {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

.nice-admin-table-container {
    width: 100%;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    padding-top: 20px;
}

.nice-admin-table-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 15px;
}

.nice-admin-table-search-box {
    display: flex;
    gap: 10px;
    width: 100%;
}
.nice-admin-table-search-input {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #e5e5e5;
    border-radius: 999px;
    font-size: 14px;
    outline: none;
    margin-bottom: 10px;
}
.nice-admin-table-search-input:hover,
.nice-admin-table-search-input:focus{
    border: 1px solid #0f0f0f;
}
.nice-admin-table-search-btn {
    background-color: #0f0f0f;
    color: #fff;
    padding: 10px 10px;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
}
.nice-admin-table-search-btn:hover {
    opacity: 0.7;
}

.nice-admin-table-description {
    margin-top: 15px;
    font-size: 13px;
    color: #606060;
    line-height: 20px;
}
.nice-admin-table-wrapper {
    width: 100%;
    overflow-x: auto; 
    -webkit-overflow-scrolling: touch;
}

.nice-admin-table-data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.nice-admin-table-data-table th,
.nice-admin-table-data-table td {
    padding: 12px 15px;
    text-align: left;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 500;
    color: #0f0f0f;
}
.nice-admin-table-data-table td > a > svg{
    width: 20px;
    height: 20px;
    color: #0f0f0f;
    cursor: pointer;
}
.nice-admin-table-data-table th {
    background-color: #fff;
    font-weight: 500;
    color: #606060;
    font-size: 12px;
    border: 1px solid #e5e5e5;
}
.nice-admin-table-row:hover {
    background-color: #f2f2f2;
}
.nice-admin-table-cell-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nice-admin-table-avatar {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; 
    object-fit: cover;
}
.nice-admin-table-thumbnail{
    width: 85px;
    height: 100%;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; 
    object-fit: cover;
}
.nice-admin-table-thumbnail > img{
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid #e5e5e5;
    user-select: none;
    pointer-events: none;
}
.nice-admin-table-avatar > img{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.nice-admin-table-pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e5e5e5;
}
.nice-admin-table-page-btn {
    background-color: transparent;
    border: 1px solid #e5e5e5;
    color: #0f0f0f;
    padding: 5px 9px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 400;
    transition: background-color 0.2s, color 0.2s;
}
.nice-admin-table-page-btn:hover:not(.nice-admin-table-page-active):not(:disabled) {
    background-color: #f2f2f2;
}
.nice-admin-table-page-active {
    background-color: #0f0f0f;
    color: #fff;
    border-color: #0f0f0f;
}
.nice-admin-table-page-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.nice-admin-table-page-dots {
    padding: 8px 0;
    color: #606060;
}
@media (min-width: 768px) {
    .nice-admin-table-data-table {
        min-width: initial; 
    }
}
@media (max-width: 767px) {
    
    .nice-admin-table-search-input{
        width: 100%;
    }
    .nice-admin-table-hide-mobile {
        display: none !important;
    }
    .nice-admin-table-data-table {
        min-width: 500px;
    }
    .nice-admin-table-search-box {
        flex-direction: column;
        gap: 8px;
    }
    .nice-admin-table-search-btn {
        width: 100%;
    }
    .nice-admin-table-pagination {
        justify-content: center;
        flex-wrap: wrap;
    }
    .nice-admin-table-page-number {
        padding: 8px 10px;
    }
}
@media (max-width: 991px) {
    .nice-admin-table-hide-tablet {
        display: none !important;
    }
}
.nice-admin-table-row{
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}
.admin-channel-page-svg svg{
    width: 13px;
    height: 13px;
    fill: #606060;
    margin-left: -8px;
    margin-top: 4px;
}
.nice-admin-edit-wrapper.nice-admin-profile-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
}
.nice-admin-edit-wrapper-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 400;
    color: #606060;
    flex-wrap: wrap; 
}
.nice-admin-edit-wrapper-brand {
    display: flex;
    align-items: center;
}
.nice-admin-edit-wrapper-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-right: 10px;
}
.nice-admin-edit-wrapper-title-group {
    display: flex;
    flex-direction: column;
}
.nice-admin-edit-wrapper-name {
    font-weight: 600;
    color: #0f0f0f;;
}
.nice-admin-edit-wrapper-username {
    color: #606060;
    font-size: 12px;
}
.nice-admin-edit-wrapper-content {
    display: flex;
    flex-direction: column; 
    gap: 20px;
    width: 100%;
    max-width: 1200px;
}
.nice-admin-edit-wrapper-info-block {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e5e5e5;
    flex-grow: 1;
    order: 2;
}
.nice-admin-edit-wrapper-subtitle {
    font-size: 15px;
    font-weight: 600;
    color: #0f0f0f;
    margin-bottom: 15px;
    padding-bottom: 5px;
}
.nice-admin-edit-wrapper-subtitle-additional {
    margin-top: 30px;
}
.nice-admin-edit-wrapper-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 10px 0;
}
.nice-admin-edit-wrapper-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
    border-right: 1px solid #e5e5e5;
    font-size: 25px;
    font-weight: 600;
    color: #0f0f0f;
}
.nice-admin-edit-wrapper-stat-item:last-child {
    border-right: none;
}
.nice-admin-edit-wrapper-stat-label {
    font-size: 13px;
    color: #606060;
    font-weight: 400;
}
.nice-admin-edit-wrapper-divider {
    border: 0;
    height: 1px;
    background-color: #eee;
    margin: 10px 0 20px 0;
}
.nice-admin-edit-wrapper-details {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 5px; 
}
.nice-admin-edit-wrapper-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e5e5e5;
}
.nice-admin-edit-wrapper-detail-label {
    font-size: 15px;
    font-weight: 400 !important;
    color: #606060 !important;
    flex-shrink: 0; 
    margin-right: 15px;
    margin-bottom: 7px !important
}
.nice-admin-edit-wrapper-detail-value {
    font-weight: 400;
    color: #606060;;
    text-align: right;
    word-break: break-all; 
}
.nice-admin-edit-wrapper-card-block {
    flex-shrink: 0; 
    order: 1;
}
.nice-admin-edit-wrapper-profile-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    border: 1px solid #e5e5e5;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.nice-admin-edit-wrapper-card-avatar-container {
    width: 90px;
    height: 90px;
    background: #e5e5e5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    user-select: none;
}
.nice-admin-edit-wrapper-card-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #f0f0f0; 
    object-fit: cover;
    user-select: none;
    border: 1px solid #e5e5e5;
}
.nice-admin-edit-wrapper-card-name {
    font-size: 13px;
    font-weight: 500;
    color: #606060;;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}
.nice-admin-edit-wrapper-card-name > svg{
    width: 14px;
    height: 14px;
    fill: #606060;
    margin-left: 3px
}
.nice-admin-edit-wrapper-card-username {
    color: #606060;
    font-size: 13px;
    margin-bottom: 20px;
}
.nice-admin-edit-wrapper-card-button {
    background-color: #0f0f0f; 
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    width: 100%; 
    max-width: 200px;
}
.nice-admin-edit-wrapper-card-button:hover {
    opacity: 0.7;
}
@media (min-width: 768px) {
    .nice-admin-edit-wrapper-header {
        flex-basis: auto; 
        margin-top: 0;
        text-align: left;
    }

    .nice-admin-edit-wrapper-content {
        flex-direction: row; 
        align-items: flex-start;
    }
    .nice-admin-edit-wrapper-info-block {
        flex: 1; 
        order: 1;
    }
    .nice-admin-edit-wrapper-card-block {
        width: 300px;
        order: 2;
    }
    .nice-admin-edit-wrapper-details {
        grid-template-columns: 1fr 1fr;
        gap: 15px 30px;
    }
    .nice-admin-edit-wrapper-detail-row {
        display: block; 
        padding: 0;
        border-bottom: none;
    }
    .nice-admin-edit-wrapper-detail-label {
        display: block; 
        font-size: 13px;
        font-weight: 500;
        margin-bottom: 3px;
        color: #606060;
        text-align: left;
    }
    .nice-admin-edit-wrapper-detail-value {
        display: block;
        font-size: 13.3px;
        font-weight: 600;
        color: #0f0f0f;;
        text-align: left;
    }
}
.values-button-ikons{
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    padding: 8px 15px;
    border: 1px solid #e5e5e5;
    width: max-content;
    border-radius: 4px;
    cursor: pointer;
    user-select: none;
}
.values-button-ikons > svg{
    width: 16px;
    height: 16px;
    color: #0f0f0f;
    margin-right: 7px;
}
.values-button-ikons:hover{
    opacity: .5;
}
.nice-admin-edit-forms-container {
    max-width: 1200px; 
    display: flex;
    flex-direction: column;
    gap: 30px;
}
@media (min-width: 850px) {
    .nice-admin-edit-forms-container {
        flex-direction: row;
        align-items: flex-start;
    }
    .nice-admin-edit-forms-main {
        flex: 2.5;
        min-width: 0;
    }
    .nice-admin-edit-forms-sidebar {
        flex: 1;
        min-width: 300px; 
    }
}

.nice-admin-edit-forms-header {
    padding-bottom: 20px;
}
.nice-admin-edit-forms-title {
    font-size: 20px;
    font-weight: 500; 
    color: #0f0f0f;
    margin-bottom: 5px;
}
.nice-admin-edit-forms-subtitle {
    font-size: 14px;
    color: #606060;
    margin: 0;
}
.nice-admin-edit-forms-field-group {
    background-color: #fff;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 10px;
    border: 1px solid #e5e5e5; 
}
.nice-admin-edit-forms-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #0f0f0f;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.nice-admin-edit-forms-description {
    font-size: 12px;
    color: #606060;
    margin-bottom: 10px;
    line-height: 1.4;
}
.nice-admin-edit-forms-input-wrapper {
    display: flex;
    align-items: center;
    border-radius: 4px;
    background-color: #f2f2f2;
    padding: 0;
    margin: 0;
}
.nice-admin-edit-forms-input {
    flex-grow: 1;
    padding: 8px 10px;
    border: none;
    outline: none;
    font-size: 13px;
    color: #0f0f0f;
    background-color: transparent;
    width: 100%;
}
.nice-admin-edit-forms-copy-button {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    border-left: 1px solid #e5e5e5;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23999"><path d="M16 1H4C2.9 1 2 1.9 2 3v14h2V3h12V1zm3 4H8C6.9 5 6 5.9 6 7v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
    transition: background-color 0.2s;
}

.nice-admin-edit-forms-copy-button:hover {
    background-color: #e5e5e5;
}
.nice-admin-edit-forms-sidebar {
    padding: 0 10px;
}
.nice-admin-edit-forms-info-card {
    background: linear-gradient(180deg, #e6ffec 0%, #fff 40%); 
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e5e5e5; 
}
.nice-admin-edit-forms-info-title {
    font-size: 15px;
    font-weight: 600;
    color: #0f0f0f;
    margin-bottom: 10px;
    text-align: left;
}
.nice-admin-edit-forms-info-text {
    font-size: 12px;
    color: #0f0f0f;
    margin-bottom: 15px;
    line-height: 1.5;
}
.nice-admin-edit-forms-warning-box {
    padding: 10px;
    background-color: #fff8e1;
    color: #0f0f0f;
    font-size: 12px;
    line-height: 1.5;
    margin-top: 15px;
    border-radius: 4px;
    border: 1px solid #ffe0b2;
}
.nice-admin-edit-forms-copy-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23999"><path d="M16 1H4C2.9 1 2 1.9 2 3v14h2V3h12V1zm3 4H8C6.9 5 6 5.9 6 7v14c0 1.1.9 2 2 2h11c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zm0 16H8V7h11v14z"/></svg>');
    background-size: 18px 18px;
}
.nice-admin-edit-forms-copy-success {
    background-image: url('data:image/svg+xml;utf8,<svg class="size-full " fill="none" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M7.5 12L10.5 15L16.5 9M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z" stroke="%234CAF50" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path></svg>');
    background-size: 18px 18px;
}
.nice-admin-carding-container {
    display: flex;
    min-height: 100vh;
    background-color: #ffffff;
    padding-left: 50px;
    transition: padding-left 0.3s ease;
}
.nice-admin-carding-sidebar {
    width: 255px;
    background-color: #ffffff;
    
    flex-shrink: 0;
    overflow-y: auto; 
    position: fixed;
    height: 100vh;
    left: 0;
    top: 0px;
    z-index: 10000;
    transition: transform 0.3s ease, width 0.3s ease;
    padding-bottom: 0px;
    border-right: 1px solid #e5e5e5;
}
.nice-admin-carding-sidebar-nav{
    margin-bottom: 15px;
}
.nice-admin-carding-main-content {
    flex-grow: 1;
    padding: 10px;
    width: 100%;
}
.nice-admin-carding-logo-nav{
    width: 115px;
    margin-top: 15px;
    margin-left: 24px;
    margin-right: 24px;
}
.nice-admin-carding-logo-nav > a{
    text-decoration: none;
    color: inherit;
}
.nice-admin-carding-logo-nav > a img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
}
@media (max-width: 768px) {
    .nice-admin-carding-container {
        padding-left: 0;
    }
    .nice-admin-carding-sidebar {
        transform: translateX(-100%);
        width: 70%; 
        padding-bottom: 0px;
    }
    .nice-admin-carding-sidebar.nice-admin-carding-sidebar-active {
        transform: translateX(0);
    }
    .nice-admin-carding-logo-nav {
        margin-left: 14px;
    }
    .nice-admin-carding-sidebar-nav-item a{
        margin-left: -14px;
    }
}
.nice-admin-carding-sidebar-nav-item a {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    text-decoration: none;
    color: #0f0f0f;
    font-size: 14px;
    word-wrap: break-word;
    flex-wrap: wrap;
}
.nice-admin-carding-sidebar-nav-item a:hover {
    background-color: #f2f2f2;
}
.nice-admin-carding-sidebar-nav-item.nice-admin-carding-active a {
    color: #0f0f0f;;
    background-color: #f2f2f2;
}
.nice-admin-carding-sidebar-nav-item svg {
    margin-right: 8px;
    width: 24px;
    height: 24px;
    color: #0f0f0f;
    flex-shrink: 0;
}
.nice-admin-carding-sidebar-nav-section-title {
    padding: 10px 20px;
    font-size: 13px;
    color: #0f0f0f;
    font-weight: 600;
    border-bottom: 1px solid #e5e5e5;
}
.nice-admin-carding-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    padding-left: 0px;
}

.nice-admin-carding-header-left {
    display: flex;
    align-items: flex-start;
}

.nice-admin-carding-back-button {
    text-decoration: none;
    margin-right: 20px;
    color: #0f0f0f;
    width: 25px;
    height: 25px;
    transition: color 0.2s;
    flex-shrink: 0;
}

.nice-admin-carding-title {
    font-size: 23px;
    font-weight: 600;
    color: #0f0f0f;
}

.nice-admin-carding-subtitle {
    font-size: 13px;
    color: #606060;
    margin-top: 5px;
}

.nice-search-result-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0px 20px;
}
.nice-search-result-channel-name{
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #606060;
    display: flex;
    align-items: center;
}
.nice-search-result-channel-name > svg{
    width: 13px;
    height: 13px;
    color: #606060;
    margin-left: 3px;
}
.nice-search-result-item {
    display: flex; 
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
    align-items: flex-start;
    gap: 20px;
}
.nice-search-result-item:last-child{
    border-bottom: none;
}
@media (max-width: 600px) {
    .nice-search-result-item {
        flex-direction: column;
        gap: 10px;
    }
}

.nice-search-result-thumbnail-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 400px;
    max-width: 40%; /
}

@media (max-width: 600px) {
    .nice-search-result-thumbnail-wrapper {
        width: 100%; 
        max-width: 100%;
    }
    .nice-history-carding-view-date-history{
        margin-top: 10px !important;
    }
}
.nice-search-result-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    border: 1px solid #e5e5e5;
}
.nice-search-result-duration {
    position: absolute;
    bottom: 10px;
    right: 8px;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}
.nice-search-result-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.nice-search-result-title {
    font-size: 18px;
    color: #0f0f0f;
    text-decoration: none;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 4px;
}
.nice-search-result-meta {
    font-size: 12px;
    color: #606060;
    margin-bottom: 11px;
    font-weight: 400;
}
.nice-search-result-channel {
    display: flex;
    align-items: center;
    margin-bottom: 11px;
}
.nice-search-result-channel-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    margin-right: 8px;
    background-color: #606060; 
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    overflow: hidden; 
}
.nice-search-result-description {
    font-size: 13px;
    color: #606060;
    margin-top: 0;
    margin-bottom: 11px;
    display: -webkit-box;           
    -webkit-box-orient: vertical;  
    -webkit-line-clamp: 2;         
    overflow: hidden;               
    text-overflow: ellipsis;      
    line-height: 1.4em;
}
.nice-search-result-tag {
    font-size: 11px;
    color: #606060;
    display: inline-block;
    width: max-content;
    user-select: none;
    pointer-events: none;
}
.nice-search-result-menu-button {
    cursor: pointer;
    margin-left: auto; 
    align-self: flex-start;
}
.nice-search-result-menu-button > svg{
    width: 23px;
    height: 23px;
    fill: #0f0f0f;
}
.nice-dashboard-ap-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    padding: 10px;
    margin-bottom: 25px;
}
.nice-dashboard-ap-container:last-child{
    margin-bottom: -0px;
}
.nice-dashboard-ap-card {
    background-color: white;
    border-radius: 4px; 
    padding: 15px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); 
    border: 1px solid #e5e5e5;
    height: 100px; 
}
.nice-dashboard-ap-icon-wrapper {
    width: 50px;
    height: 50px;
    border: 1px solid #e5e5e5; 
    border-radius: 50%; 
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}
.nice-dashboard-ap-svg {
    width: 25px;
    height: 25px;
    color: #0f0f0f;
}
.nice-dashboard-ap-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.nice-dashboard-ap-value {
    font-size: 20px;
    font-weight: 600;
    color: #0f0f0f;
    margin-bottom: 2px;
}
.nice-dashboard-ap-label {
    font-size: 14px;
    color: #0f0f0f;
}
.nice-dashboard-ap-content-ffmpeg {
    flex-direction: row; 
    align-items: baseline;
}
.nice-dashboard-ap-label-on {
    background-color: #e0f7fa; 
    color: #00bcd4; 
    font-size: 12px;
    font-weight: 400;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    top: -2px;
    position: relative;
    border: 1px solid #00bcd4;
}
@media (max-width: 992px) {
    .nice-dashboard-ap-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .nice-dashboard-ap-container {
        grid-template-columns: 1fr;
    }
    .nice-dashboard-ap-card {
        padding: 15px;
    }
    .nice-dashboard-ap-icon-wrapper {
        margin-right: 15px;
    }
}
.nice-watch-feature-users-container {
    max-width: 100%;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 15px;
}
.nice-watch-feature-users-header {
    margin-bottom: 12px;
}
.nice-watch-feature-users-video-title {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
    margin: 0;
    color: #0f0f0f;
}
.nice-watch-feature-users-channel-and-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.nice-watch-feature-users-channel-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 16px;
    flex-shrink: 0;
}
.nice-watch-feature-users-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #e5e5e5;
}
.nice-watch-feature-users-channel-details {
    display: flex;
    flex-direction: column;
    margin-right: 8px;
}
.nice-watch-feature-users-channel-name {
    font-weight: 700;
    font-size: 15px;
    color: #0f0f0f;
    display: flex;
    align-items: center;
}
.nice-watch-feature-users-channel-name > svg {
    fill: #606060;
    margin-left: 2px;
    width: 16px;
    height: 16px;
}
.nice-watch-feature-users-subscriber-count {
    font-size: 12px;
    color: #606060;
}
.nice-channel-for-subscribe-button {
    background-color: #0f0f0f;
    color: white;
    font-weight: 600;
    padding: 10px 16px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
    text-decoration: none;
    user-select: none;
}
.nice-channel-for-subscribe-button:hover {
    background-color: #333;
}
.nice-watch-feature-users-action-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 5px;
}
.nice-watch-feature-users-button {
    background-color: #f2f2f2;
    color: #0f0f0f;
    font-weight: 600;
    padding: 10px 16px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.2s;
    white-space: nowrap;
}
.nice-watch-feature-users-button:hover {
    background-color: #e5e5e5;
}
.nice-watch-feature-users-icon {
    font-size: 19px;
    line-height: 1;
    color: #0f0f0f;
}
.nice-watch-feature-users-icon-svg{
    color: #0f0f0f;
    width: 20px;
    height: 20px;
}
.nice-watch-feature-users-like-dislike-group {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    background-color: #f2f2f2;
}
.nice-watch-feature-users-like-dislike-group .nice-watch-feature-users-button {
    background-color: transparent;
    padding: 10px 12px;
    border-radius: 0;
}

.nice-watch-feature-users-like-dislike-group .nice-watch-feature-users-button:hover {
    background-color: rgba(0, 0, 0, 0.05);
}
.nice-watch-feature-users-separator {
    width: 1px;
    height: 100%;
    background-color: #cccccc;
    min-height: 25px;
    margin: 7px 0; 
}
.nice-watch-feature-users-count {
    margin-right: 4px;
}
@media (max-width: 768px) {
    .nice-watch-feature-users-video-title {
        font-size: 18px;
    }
    .nice-watch-feature-users-channel-info {
        width: 100%;
        margin-bottom: 12px;
    }
    .nice-channel-for-subscribe-button {
        padding: 8px 14px;
    }
    .nice-watch-feature-users-channel-and-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .nice-watch-feature-users-video-title, .nice-watch-feature-users-channel-and-actions{
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .nice-watch-feature-users-action-buttons {
        width: 100%;
        justify-content: space-between;
        margin-top: 0;
        gap: 4px;
    }
    .nice-watch-feature-users-action-buttons .nice-watch-feature-users-button:not(.nice-watch-feature-users-like-dislike-group .nice-watch-feature-users-button):not {
        padding: 8px 10px;
        flex-grow: 1;
        font-size: 0;
        justify-content: center;
        gap: 0;
    }
    .nice-watch-feature-users-action-buttons .nice-watch-feature-users-icon,
    .nice-watch-feature-users-count {
        font-size: 18px;
        display: inline-block;
    }
    .nice-watch-feature-users-icon-svg{
        display: inline-block;
        width: 19px;
        height: 19px;
    }
    .nice-watch-feature-users-count {
        font-size: 14px;
    }
    .nice-watch-feature-users-clip-button {
        display: none;
    }
}
.nice-reporthistory-card-container * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.nice-reporthistory-card-container {
    padding: 24px; 
}
.nice-reporthistory-card-content {
    max-width: 1280px; 
    width: 100%;
    margin: 0 auto; 
    padding: 24px;
}
.nice-reporthistory-card-header {
    font-size: 24px; 
    font-weight: 400; 
    line-height: 30px;
    margin-bottom: 10px;
    color: #0f0f0f;
}
.nice-reporthistory-card-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.nice-reporthistory-card-text-area {
    flex-grow: 1;
    max-width: 600px;
}
.nice-reporthistory-card-image-area {
    width: 350px; 
    height: 150px; 
    flex-shrink: 0;
    margin: 0 auto;
    user-select: none;
    pointer-events: none;
}
.nice-reporthistory-card-image {
    width: 100%;
    height: 100%;
    object-fit: contain; 
}
.nice-reporthistory-card-intro-text,
.nice-reporthistory-card-link-section {
    font-size: 14px;
    line-height: 23px;
    color: #606060; 
    margin-bottom: 16px;
}
.nice-reporthistory-card-list {
    list-style: none;
    margin-bottom: 16px;
}
.nice-reporthistory-card-list-item {
    font-size: 14px;
    line-height: 20px;
    color: #606060;
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}
.nice-reporthistory-card-list-item::before {
    content: "•"; 
    color: #606060;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1em;
}
.nice-reporthistory-card-divider {
    border: none;
    border-top: 1px solid #e5e5e5;
    margin: 10px 0 24px 0;
}
.nice-reporthistory-card-empty-state {
    font-size: 14px;
    color: #0f0f0f;
    padding: 16px 0;
    text-align: center;
}
@media (min-width: 800px) {
    .nice-reporthistory-card-main {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between; 
    }
    .nice-reporthistory-card-text-area {
        max-width: 65%;
        padding-right: 40px;
    }
    .nice-reporthistory-card-image-area {
        margin: 0;
        margin-top: 4px; 
    }
}
@media (max-width: 480px) {
    .nice-reporthistory-card-content {
        padding: 16px;
    }
    .nice-reporthistory-card-header {
        font-size: 17px;
    }
}
.nice-repost-history-values-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    background-color: #ffffff;
}
.nice-repost-history-values-table {
    display: grid;
    grid-template-columns: 80px 3fr 3fr 1.5fr 1.5fr;
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.nice-repost-history-values-header {
    display: contents;
    font-size: 14px;
    font-weight: 500;
    color: #606060;
    border-bottom: 1px solid #e5e5e5;
}
.nice-repost-history-values-header-cell {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}
.nice-repost-history-values-header-cell:first-child {
    padding-left: 0px;
}
.nice-repost-history-values-row {
    display: contents; 
}
.nice-repost-history-values-cell {
    padding: 15px;
    vertical-align: top;
    display: flex;
    align-items: flex-start;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}
.nice-repost-history-values-cell:first-child {
    padding-left: 0px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nice-repost-history-values-icon-svg {
    width: 25px;
    height: 25px;
    color: #0f0f0f;
}
.nice-repost-history-values-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.nice-repost-history-values-content-link {
    display: inline;
    color: #1a73e7;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    line-height: 18px;
}
.nice-repost-history-values-creator {
    display: block;
    font-size: 12px;
    color: #606060;
    margin-top: 4px;
}
.nice-repost-history-values-reason-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 14px;
    color: #0f0f0f;
    line-height: 18px;
}
.nice-repost-history-values-reason-date {
    display: block;
    font-size: 12px;
    color: #606060;
    margin-top: 2px;
}
.nice-repost-history-values-status {
    font-weight: 400;
    color: #0f0f0f;
    font-size: 14px;
}
.nice-repost-history-values-type{
    font-size: 14px;
    color: #0f0f0f;
}
@media (max-width: 768px) {
    .nice-repost-history-values-table {
        grid-template-columns: 1fr;
        display: block;
    }
    .nice-repost-history-values-header {
        display: none;
    }
    .nice-repost-history-values-row {
        display: block;
        margin-bottom: 10px;
        padding: 10px;
        border: 1px solid #e5e5e5;
        border-radius: 4px;
    }
    .nice-repost-history-values-row:not(:last-child) .nice-repost-history-values-cell {
            border-bottom: none;
    }
    .nice-repost-history-values-cell {
        display: flex;
        flex-direction: column;
        padding: 8px 0;
        border-bottom: 1px solid #e5e5e5;
    }
    .nice-repost-history-values-cell:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .nice-repost-history-values-cell:before {
        content: attr(data-label);
        font-weight: 500;
        color: #606060;
        font-size: 12px;
        margin-bottom: 5px;
    }
    .nice-repost-history-values-cell:first-child {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding-left: 0;
        padding-top: 0;
        border-bottom: 1px solid #e5e5e5;
    }
    .nice-repost-history-values-cell:first-child:before {
        margin-bottom: 0;
        margin-right: 10px;
    }
    .nice-repost-history-values-cell:nth-child(2) {
        padding-top: 10px;
        border-top: none;
    }
    .nice-repost-history-values-cell:nth-child(2):before {
            display: none;
    }
}
.nice-admin-system-status-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    width: 100%;
    max-width: 900px;
    padding: 25px;
}
.nice-admin-system-status-header {
    margin-bottom: 20px;
}
.nice-admin-system-status-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    margin: 0 0 15px 0;
}
.nice-admin-system-status-icon-wrapper {
    margin-bottom: 20px;
}
.nice-admin-system-status-icon-bg {
    background-color: #f0eaff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nice-admin-system-status-icon-bg svg {
    color: #9c27b0;
}
.nice-admin-system-status-subtitle {
    font-size: 13px;
    font-weight: 400;
    color:#0f0f0f;
    line-height: 1.5;
    margin: 0;
}
.nice-admin-system-status-divider {
    border: 0;
    border-top: 1px solid #e5e5e5;
    margin: 20px 0;
}
.nice-admin-system-status-alert-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 10px 0;
}
.nice-admin-system-status-alert-icon {
    flex-shrink: 0;
    margin-top: 4px;
}
.nice-admin-system-status-alert-icon svg {
    width: 24px;
    height: 24px;
    color: #f44336;
}
.nice-admin-system-status-alert-title {
    color: #ee404c;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
}
.nice-admin-system-status-alert-text {
    font-size: 13px;
    color: #0f0f0f;
    line-height: 1.6;
    margin: 0;
}
.nice-admin-system-status-alert-text strong {
    font-weight: 600;
}
.nice-admin-system-status-item-divider {
    border: 0;
    border-top: 1px solid #e5e5e5;
    margin: 15px 0;
}
@media (max-width: 600px) {
    .nice-admin-system-status-card {
        padding: 15px;
    }
    .nice-admin-system-status-alert-item {
        flex-direction: row;
    }
    .nice-admin-system-status-alert-text {
        font-size: 0.85rem;
    }
}
.notifications-dropdown {
  position: absolute;
  top: 56px;
  right: 16px;
  width: 480px;
  max-height: calc(100vh - 80px);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
  animation: fadeIn 0.2s ease-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.notifications-dropdown.active {
  display: flex;
}
.notifications-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  min-height: 48px;
  border-bottom: 1px solid #e5e5e5;
}
.notifications-dropdown-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #0f0f0f;
}
.notif-close-btn {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}
.notif-close-btn:hover { 
  background: #f2f2f2; 
}
.notif-close-btn svg {
  width: 24px;
  height: 24px;
  fill: #0f0f0f;
}
#notifSettingsBtn {
  display: flex;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.2s;
}
#notifSettingsBtn:hover { 
  background: #f2f2f2; 
}
#notifSettingsBtn svg {
  width: 24px;
  height: 24px;
  fill: #0f0f0f;
}
.notifications-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}
.notifications-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 40px 20px;
}
.empty-icon-container svg {
  width: 120px;
  height: 120px;
  fill: #909090;
  margin-bottom: 24px;
}
.notifications-empty h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #0f0f0f;
}
.notifications-empty p {
  font-size: 14px;
  color: #606060; 
  max-width: 280px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .notifications-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
    box-shadow: none;
    z-index: 2000;
  }
  .notifications-dropdown.active {
    display: flex;
  }
  .notif-close-btn {
    display: flex;
  }
  .notifications-dropdown-header {
    padding: 0 12px;
    height: 56px;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
  }
  .notifications-body {
      padding-bottom: env(safe-area-inset-bottom);
  }
}
.nice-subscriptions-wrapper-container {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 25px;
}
.nice-subscriptions-wrapper-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #0f0f0f;
}
.nice-subscriptions-wrapper-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    gap: 16px;
}
.nice-subscriptions-wrapper-channel-info {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}
.nice-subscriptions-wrapper-avatar {
    width: 136px;
    height: 136px;
    border-radius: 50%;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}
.nice-subscriptions-wrapper-details {
    flex: 1;
}
.nice-subscriptions-wrapper-name-row {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}
.nice-subscriptions-wrapper-name-row > svg{
    width: 14px;
    height: 14px;
    fill: #606060;
}
.nice-subscriptions-wrapper-name {
    font-size: 18px;
    font-weight: 400;
    color: #0f0f0f;
}
.nice-subscriptions-wrapper-stats {
    font-size: 12px;
    color: #606060;
    margin-bottom: 8px;
}
.nice-subscriptions-wrapper-description {
    font-size: 13px;
    color: #606060;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    max-width: 600px;
}
.nice-subscriptions-wrapper-sub-btn {
    display: flex;
    align-items: center;
    background: #f2f2f2;
    border: none;
    padding: 0 16px;
    height: 36px;
    border-radius: 18px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
    color: #0f0f0f;
    width: max-content;
}
.nice-subscriptions-wrapper-sub-btn:hover {
    opacity: 0.7;
}
@media (max-width: 768px) {
    .nice-subscriptions-wrapper-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .nice-subscriptions-wrapper-avatar {
        width: 80px;
        height: 80px;
    }
    .nice-subscriptions-wrapper-channel-info {
        gap: 16px;
    }
    .nice-subscriptions-wrapper-action {
        width: 100%;
        margin-left: 96px;
    }
    .nice-subscriptions-wrapper-container{
        padding: 15px;
        margin-top: -0px;
    }
}
@media (max-width: 480px) {
    .nice-subscriptions-wrapper-description {
        display: none; 
    }
    .nice-subscriptions-wrapper-action {
        margin-left: 0;
        margin-top: 8px;
    }
}
.admin-panel-powered-by-block {
    display: inline-flex; 
    flex-direction: column;
    padding: 15px 20px;
    background-color: #fff;
    color: #0f0f0f;
    width: 100%;
    user-select: none;
    pointer-events: none;
    border: 1px solid #e5e5e5;
    border-right: none;
    border-left: none;
    border-bottom: none;
}
.admin-panel-powered-by-text {
    font-size: 11px;
    color: #0f0f0f; 
    font-weight: 400;
}
.admin-panel-powered-logo-container {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 5px; 
}
.admin-panel-powered-logo-image {
    width: 100px;
}
.admin-panel-version-tag {
    font-size: 11px;
    font-weight: 400;
    color: #fff;
    background-color: #1a73e6;
    padding: 3px 6px;
    border-radius: 3px;
    line-height: 1; 
    white-space: nowrap;
    user-select: none;
}
@media (max-width: 400px) {
    .admin-panel-powered-by-block {
        padding: 10px 15px; 
    }
    .admin-panel-powered-by-text {
        font-size: 11px;
    }
    .admin-panel-powered-logo-image {
        width: 24px;
        height: 24px;
    }
    .admin-panel-version-tag {
        font-size: 10px;
    }
}