/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.0.1746609612
Updated: 2025-05-07 09:20:12

*/

.account-container {
    display: flex;
    min-height: 100vh;
	margin-bottom: 20px;
}

/* Sidebar Styles */
.account-sidebar {
    width: 275px;
    background-color: #222222;
    padding: 20px;
    box-sizing: border-box;
	border-radius: 20px;
}

.account-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.account-sidebar li {
    margin-bottom: 15px;
}

.account-sidebar a {
    text-decoration: none;
    color: #ffffff;
    font-weight: bold;
    display: block;
    padding: 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.account-sidebar a:hover,
.account-sidebar a.active {
    background-color: #ffffff;
    color: #000000;
}

/* Content Area */
.account-content {
    flex: 1;
    padding: 30px;
    box-sizing: border-box;
    background-color: #ffffff;
}


/* Category Filter */
.training-category-filter {
    padding: 20px;
    border-bottom: 1px solid #000;
    background-color: #fff;
}

.training-category-filter h2 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #000;
}

.training-category-filter ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.training-category-filter li a {
    text-decoration: none;
    color: #000;
    padding: 8px 14px;
    border: 1px solid #000;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.training-category-filter li a:hover,
.training-category-filter li a[style*="font-weight:bold;"] {
    background-color: #000;
    color: #fff;
}

/* Training Section */
.training-section {
    padding: 30px;
    background-color: #fff;
}

.training-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #000;
}

/* Grid for Videos */
.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* Individual Video Card */
.video-card {
    background-color: #fff;
    border: 1px solid #000;
    padding: 10px;
    border-radius: 8px;
    transition: box-shadow 0.2s ease;
}

.video-card:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.thumbnail-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.training-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Overlay Info */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.play-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.video-card h5 {
    margin: 10px 0 5px;
    font-size: 18px;
    color: #000;
}

.video-card p {
    font-size: 14px;
    color: #333;
}


/* PDF Upload Section */
.upload-pdf-section {
    padding: 30px;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 8px;
    max-width: 500px;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.upload-pdf-section form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.upload-pdf-section input[type="file"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.upload-pdf-section input[type="submit"] {
    padding: 10px 20px;
    background-color: #000 !important;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.upload-pdf-section input[type="submit"]:hover {
    background-color: #333;
}

.upload-pdf-section h4 {
    margin-top: 20px;
    font-size: 18px;
    color: #000;
}

.upload-pdf-section a {
    text-decoration: none;
    color: #000;
    margin-right: 10px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.upload-pdf-section a:hover {
    border-color: #000;
}



 
 
/* Meal Plan List Section */
.meal-plan-list {
    padding: 30px;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 8px;
    max-width: 800px;
    margin: 30px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.meal-plan-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.meal-plan-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #ddd;
    gap: 15px;
    flex-wrap: wrap;
}

.meal-plan-list li:last-child {
    border-bottom: none;
}

.meal-plan-list img {
    width: 50px;
    height: auto;
    flex-shrink: 0;
}

.meal-plan-list span {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    flex-grow: 1;
}

.meal-plan-list a {
    color: #000;
    text-decoration: none;
    margin-left: 10px;
    font-size: 14px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.meal-plan-list a:hover {
    border-color: #000;
}


/**
.pagination {
    margin-top: 20px;
    text-align: center;
}

.pagination .page-numbers {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 12px;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background-color: #000;
    color: #fff;
}
*/