html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.video-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.video-item {
    width: 300px; /* Adjust the width as needed */
    text-align: center;
}

video {
    width: 100%;
    height: auto;
}
#chatContainer {
    margin-top: 20px;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 8px;
}

.chat-messages {
    margin-bottom: 10px;
}

.chat-message {
    margin-bottom: 5px;
}

    .chat-message .timestamp {
        font-size: 0.8em;
        color: #888;
    }

#chatForm {
    display: flex;
    flex-direction: column;
}

    #chatForm input, #chatForm textarea {
        margin: 5px 0;
        padding: 8px;
        border-radius: 4px;
        border: 1px solid #ccc;
    }

    #chatForm button {
        padding: 8px;
        background-color: #4CAF50;
        color: white;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }
.bg-even {
    background-color: #f8f9fa !important;
}

.bg-odd {
    background-color: #ffffff !important;
}
/* wwwroot/css/site.css */

/* Banned Videos menu item - enhanced version */
.nav-item.banned-videos {
    position: relative;
    margin: 0 4px;
}

    /* Menu item styling */
    .nav-item.banned-videos .nav-link {
        font-size: 0.9rem;
        font-weight: 500;
        transition: all 0.2s ease;
    }


/*        .nav-item.banned-videos .nav-link:hover {
            transform: translateY(-2px) scale(1.03) !important;
            text-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
        }*/
        .nav-item.banned-videos .nav-link:hover {
            transform: translateY(-1px) !important;
            text-shadow: 0 1px 3px rgba(220, 53, 69, 0.3);
        }


        .nav-item.banned-videos .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 12px;
            width: calc(100% - 24px);
            height: 2px;
            background: #dc3545;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .nav-item.banned-videos .nav-link:hover::after {
            transform: scaleX(1);
        }

/* Pulse animation for extra attention */
@keyframes banned-pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

.nav-item.banned-videos .badge {
    animation: banned-pulse 2s infinite;
}



/* Theme text styling */
.theme-subtext {
    font-size: 0.85rem;
    opacity: 0.8;
    border-left: 2px solid #dc3545;
    padding-left: 10px;
}