@charset "UTF-8";
/*
Theme Name: StreamVid Child
Theme URI: https://streamvid.jwsuperthemes.com
Author: the JWSThemes team
Author URI: https://jwsuperthemes.com
Description: A child theme for StreamVid, inheriting all styles and functionalities from the parent theme.
Template: streamvid
Version: 1.0
License: GNU General Public License v3 or later
License URI: https://www.gnu.org/licenses/lgpl-3.0.en.html
Text Domain: streamvid-child
*/

/* Import Parent Theme Styles (optional but not recommended) */
/* @import url("../streamvid/style.css"); */

/* Add your custom styles below */

.library-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.library-video-item {
    background: #222;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    color: white;
}

.library-video-item video {
    border-radius: 8px;
    width: 100%;
}

.library-video-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.register-button {
    padding: 10px 20px;
    background-color: #003ee8;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-left: 10px;
}
.register-button:hover {
    background-color: #004fcc;
}
