/* Dialog/Modal Styles */
dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    max-height: 90vh;
    overflow-y: auto;
}

dialog:not([open]) {
    display: none;
}

.primary-btn {
    display: inline-flex;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    flex: 1 1 0%;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    border-radius: 0.375rem;
    height: 2.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    white-space: nowrap;
    background-color: #7C3AED;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    &:hover {
        background-color: #6D28D9;
    }
}

.outlined-purple-btn {
    border-width: 1px;
    border-color: #7C3AED;
    color: #D1D5DB;
    display: inline-flex;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    flex: 1 1 0%;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    border-radius: 0.375rem;
    height: 2.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    white-space: nowrap;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    &:hover {
        background-color: #1F2937;
    }
}

.cancel-btn {
    display: inline-flex;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    border-radius: 0.375rem;
    border-width: 1px;
    border-color: #374151;
    height: 2.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    color: #D1D5DB;
    white-space: nowrap;
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    &:hover {
        background-color: #1F2937;
    }
}

.border-danger {
   border-color: #DB2777;
}
.text-danger {
    color: #DB2777;
}

.bg-admin-chat {
    background-color: #4d4221;
}





/* Target the player container when in fullscreen mode */
.video-js:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
}
.video-js:-moz-full-screen {
  width: 100% !important;
  height: 100% !important;
}
.video-js:-ms-fullscreen {
  width: 100% !important;
  height: 100% !important;
}
.video-js:fullscreen {
  width: 100% !important;
  height: 100% !important;
}
/* Ensure the video element itself also scales correctly */
.video-js .vjs-tech {
  width: 100% !important;
  height: 100% !important;
}
