/* video.css */

.page-pretitle nav.breadcrumb {
    --bs-breadcrumb-divider: '>';
}

.player {
    max-width: 100%;
    margin: auto;
}

.quality-selector {
    margin-top: 0.5rem;
}

.form-select {
    width: auto;
}

.card-title img.card-img-top-video {
    width: 20px;
    height: 20px;
}

.card-title .img-thumbnail {
    margin-right: 0.75rem;
}

/* Additional styles for modals, buttons, etc. */

.modal .form-control {
    margin-bottom: 1rem;
}

.btn-outline-primary {
    display: flex;
    align-items: center;
}

/* You can add more styles here as needed */
/* public/css/dashboard.css */

/* Card styling */
.card-body {
    position: relative;
  }
  
  /* Close button styling */
  .alert-dismissible .btn-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: inherit;
  }
  
  /* Thumbnail styling */
  .img-thumbnail-home {
    object-fit: cover;
    width: 100%;
    height: 8vh;
  }
  
  /* Recent items styling */
  .recent-items .subheader {
    margin-bottom: 1rem;
  }
  .video-thumbnail {
    object-fit: cover;
    width: 100%;
    height: 150px;
}

.video-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.video-description {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.card-title-video {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    font-family: var(--bs-font-sans-serif); 
    font-size: 0.875rem;/* Default Bootstrap font family */
    /* Default Bootstrap font size for card titles */
  /* Default Bootstrap font weight for card titles */
}


/* public/css/videos.css */

/* Breadcrumb divider */
.breadcrumb-nav {
    --bs-breadcrumb-divider: '>';
}

/* Container for the page title */
.page-title-container {
    margin-top: 5rem;
}

/* Breadcrumb margin bottom */
.breadcrumb-margin-bottom {
    margin-bottom: 4rem;
}

/* Video player styling */
.video-player-container {
    max-width: 100%;
    margin: auto;
}

/* Video quality selector */
.quality-selector {
    margin-top: 1.5rem;
}

/* Card Image Styling */
.card-img-small {
    width: 60px;
    height: 60px;
}

/* Badge styling */
.badge-primary {
    background-color: #0d6efd; /* Bootstrap primary blue color */
    color: #fff; /* White text for contrast */
    border-radius: 0.2rem; /* Slightly rounded corners */
    padding: 0.3em 0.6em; /* Adjusted padding for better spacing */
    font-size: 0.875rem; /* Small font size for a badge appearance */
    display: inline-block; /* Ensures hashtags are displayed inline */
    margin-right: 0.3em; /* Adds space between badges */
    text-decoration: none; /* Removes underline from links */
}


/* Card Title styling */
.card-title-custom {
    font-size: 1.25rem;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Button styling for like button */
.btn-like {
    display: flex;
    align-items: center;
}

.comment-margin-bottom {
    margin-bottom: 1.5rem;
}


.banner-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
}

.default-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    background-color: #f8f9fa; /* Light gray background */
}

.text-muted {
    color: #6c757d !important;
}

     .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .video-container iframe,
        .video-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 12px;
        }

        .video-info {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin-top: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .video-title {
            font-size: 24px;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .video-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--light-gray);
            margin-bottom: 20px;
        }

        .video-stats {
            font-size: 14px;
            color: var(--text-color);
        }

        .video-actions {
            display: flex;
            gap: 15px;
        }

        .action-button {
            background: none;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            color: var(--text-color);
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .action-button:hover {
            color: var(--primary-color);
        }

        .action-button i {
            margin-right: 5px;
            font-size: 18px;
        }

        .channel-info {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }

        .channel-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 20px;
            object-fit: cover;
        }

        .channel-text {
            flex-grow: 1;
        }

        .channel-name {
            font-weight: 600;
            font-size: 18px;
            color: var(--secondary-color);
            margin-bottom: 5px;
        }

        .channel-subscribers {
            font-size: 14px;
            color: var(--text-color);
        }

        .subscribe-button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 25px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: background-color 0.3s ease;
        }

        .subscribe-button:hover {
            background-color: #2980b9;
        }

        .video-description {
            margin-top: 30px;
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-color);
        }

        .video-tags {
            margin-top: 20px;
        }

        .video-tags span {
            display: inline-block;
            background-color: var(--light-gray);
            color: var(--secondary-color);
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 12px;
            margin-right: 10px;
            margin-bottom: 10px;
        }

        .comments-section {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin-top: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .comments-header {
            font-size: 20px;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .comment {
            display: flex;
            margin-bottom: 30px;
        }

        .comment-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 20px;
            object-fit: cover;
        }

        .comment-content {
            flex-grow: 1;
        }

        .comment-author {
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 5px;
        }

        .comment-date {
            font-size: 12px;
            color: var(--text-color);
            margin-left: 10px;
        }

        .comment-text {
            font-size: 14px;
            line-height: 1.6;
            color: var(--text-color);
        }


        .video-player-card {
            border: 1px solid #e3e3e3;
            border-radius: 0.5rem;
        }
        
        .quality-selector select {
            border-radius: 0.25rem;
        }
        