.elementor-38 .elementor-element.elementor-element-bf7802c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-22c394b *//* DevTube YouTube Playlist Style Video Gallery CSS */

/* Global Styles */
.devtube-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.devtube-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.devtube-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.devtube-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #ff0000;
}

.devtube-logo i {
    font-size: 28px;
}

.devtube-search-bar {
    display: flex;
    align-items: center;
    flex-grow: 1;
    max-width: 600px;
    margin: 0 30px;
}

.devtube-search-bar input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 20px 0 0 20px;
    font-size: 16px;
    outline: none;
}

.devtube-search-bar button {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-left: none;
    border-radius: 0 20px 20px 0;
    padding: 10px 20px;
    cursor: pointer;
}

.devtube-user-actions {
    display: flex;
    gap: 15px;
}

.devtube-user-actions button {
    background-color: #ff0000;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

/* Main Content Styles */
.devtube-main-content {
    display: flex;
    margin-top: 30px;
}

/* Sidebar Styles */
.devtube-sidebar {
    width: 250px;
    flex-shrink: 0;
    margin-right: 30px;
}

.devtube-sidebar-section {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.devtube-sidebar-section h3 {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    color: #333;
    font-size: 18px;
}

.devtube-filter-category {
    list-style: none;
}

.devtube-filter-category li {
    padding: 8px 0;
    cursor: pointer;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.devtube-filter-category li:hover {
    color: #ff0000;
}

.devtube-filter-category li.devtube-active {
    color: #ff0000;
    font-weight: 600;
}

.devtube-filter-category li i {
    width: 20px;
    text-align: center;
}

/* Video Gallery Styles */
.devtube-video-gallery {
    flex-grow: 1;
}

.devtube-gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.devtube-gallery-header h2 {
    font-size: 24px;
    color: #333;
}

.devtube-view-options select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    color: #333;
    font-size: 14px;
}

.devtube-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.devtube-video-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.devtube-video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.devtube-video-thumbnail {
    position: relative;
    height: 170px;
    overflow: hidden;
}

.devtube-video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.devtube-video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 12px;
}

.devtube-video-info {
    padding: 15px;
}

.devtube-video-title {
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    font-size: 16px;
    color: #333;
}

.devtube-video-meta {
    display: flex;
    justify-content: space-between;
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.devtube-video-author {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.devtube-video-author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.devtube-video-author span {
    color: #666;
    font-size: 14px;
}

.devtube-video-description {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Footer Styles */
.devtube-footer {
    background-color: #202020;
    color: #aaa;
    padding: 40px 0;
    margin-top: 50px;
}

.devtube-footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.devtube-footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.devtube-footer-section h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.devtube-footer-links {
    list-style: none;
}

.devtube-footer-links li {
    margin-bottom: 10px;
}

.devtube-footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.devtube-footer-links a:hover {
    color: #ff0000;
}

.devtube-copyright {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #333;
    color: #777;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .devtube-sidebar {
        width: 200px;
    }
}

@media (max-width: 900px) {
    .devtube-main-content {
        flex-direction: column;
    }
    
    .devtube-sidebar {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .devtube-filter-category {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .devtube-filter-category li {
        padding: 5px 10px;
        background-color: #f0f0f0;
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .devtube-header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .devtube-search-bar {
        order: 3;
        max-width: 100%;
        margin: 15px 0 0 0;
    }
    
    .devtube-video-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .devtube-video-grid {
        grid-template-columns: 1fr;
    }
    
    .devtube-gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}/* End custom CSS */