@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap');

:root {
    --mk-primary-color: #de272c;
    --mk-secondary-color: #6c757d;
    --mk-dark-color: #343a40;
    --mk-light-color: #f8f9fa;
}

.mk-courses,
.mk-categories,
.mk-course-detail,
.mk-featured-courses,
.mk-category-courses,
.mk-category-slider,
.mk-slider,
.mk-search {
    font-family: 'Roboto Flex', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Section Titles */
.mk-section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--mk-dark-color);
    font-weight: 600;
}

/* Hide Page Title - article > h1 gizleme */
.mk-hide-page-title ~ script + style + article > h1:first-child,
.mk-hide-page-title ~ article > h1:first-child,
article:has(.mk-hide-page-title) > h1:first-child,
.mk-hide-page-title + h1,
.entry-content:has(.mk-hide-page-title) ~ .entry-header,
.post-content:has(.mk-hide-page-title) ~ .post-title,
body:has(.mk-hide-page-title) article > header h1,
body:has(.mk-hide-page-title) .entry-title {
    display: none !important;
}

/* Main Slider Styles */
.mk-main-slider {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
    overflow: hidden;
}

.mk-swiper.mainSwiper {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    overflow: visible;
}

.mk-swiper.mainSwiper .swiper-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mk-swiper.mainSwiper .swiper-slide {
    width: 100% !important;
    height: 100%;
    position: relative;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Slider Effect Fixes */
.mk-slider .swiper-slide-shadow-left,
.mk-slider .swiper-slide-shadow-right,
.mk-slider .swiper-slide-shadow-top,
.mk-slider .swiper-slide-shadow-bottom {
    background: rgba(0, 0, 0, 0.15);
}

.mk-slider .swiper-cube-shadow {
    background: rgba(0, 0, 0, 0.2);
}

.mk-slider[data-effect="coverflow"] .swiper-slide {
    width: 80%;
}

.mk-slider[data-effect="flip"] .mk-swiper.mainSwiper,
.mk-slider[data-effect="cube"] .mk-swiper.mainSwiper,
.mk-slider[data-effect="cards"] .mk-swiper.mainSwiper {
    overflow: visible;
}

.mk-slider[data-effect="cube"] .mk-swiper.mainSwiper {
    padding: 30px 0;
}

.mk-slider[data-effect="flip"] .swiper-slide {
    overflow: visible;
}

.mk-slider-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.mk-slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mk-slider-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.1), transparent);
    color: white;
    z-index: 1;
}

.mk-slider-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.mk-slider-content p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* Autoplay Progress */
.mk-autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 12px;
}

.mk-autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 3px;
    stroke: rgba(255, 255, 255, 0.8);
    fill: none;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}

.mk-autoplay-progress span {
    position: relative;
    z-index: 11;
    color: white;
    font-size: 10px;
    font-weight: bold;
    text-shadow: 0 0 3px rgba(0,0,0,0.8);
}

/* Category Slider Section */
.mk-category-slider-section {
    margin-bottom: 3rem;
}

.mk-category-slide {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 0.25rem;
}

.mk-category-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mk-category-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    z-index: 0;
}

.mk-category-bg-placeholder {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.mk-category-content {
    position: relative;
    z-index: 1;
    padding: 15px 15px 75px 15px;
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 5px;
    width: 85%;
    height: 70%;
}

/* Categories Slider */
.mk-categories-slider {
    margin-bottom: 2rem;
}

.mk-categories-slider .swiper-slide {
    height: auto;
}

.mk-categories-slider .swiper-button-next,
.mk-categories-slider .swiper-button-prev {
    color: var(--mk-primary-color);
}

.mk-categories-slider .swiper-button-next:after,
.mk-categories-slider .swiper-button-prev:after {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Course Cards */
.mk-course-card {
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: visible;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
}

.mk-course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.mk-course-card .card-img-top {
    height: 180px;
    object-fit: cover;
    width: 100%;
    background-color: #f5f5f5;
    display: block;
    border-radius: 8px 8px 0 0;
}

.mk-course-card .card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.mk-course-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mk-course-card .card-text {
    flex-grow: 1;
    font-size: 0.9rem;
    color: var(--mk-secondary-color);
    margin-bottom: 1rem;
}

/* Category Cards */
.mk-category-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mk-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.mk-category-card .card-img-top {
    height: 150px;
    object-fit: cover;
}

/* No Image Placeholder */
.mk-no-image {
    height: 180px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ccc;
}

.mk-category-card .mk-no-image {
    height: 150px;
}

/* Featured Badge */
.mk-featured-badge {
    position: absolute;
    top: -28px;
    left: -10px;
    font-size: 2rem;
    z-index: 10;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Course Detail */
.mk-course-detail-image {
    max-height: 400px;
    object-fit: cover;
}

.mk-course-summary {
    line-height: 1.8;
}

.mk-course-summary img {
    max-width: 100%;
    height: auto;
}

/* Module Icons */
.mk-module-icon {
    width: 40px;
    height: 40px;
    background-color: var(--mk-light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--mk-primary-color);
}

/* Categories Sidebar */
.mk-categories-sidebar {
    position: sticky;
    top: 20px;
}

.mk-categories-sidebar .list-group {
    border: none;
}

.mk-categories-sidebar .list-group-item {
    border: none;
    border-bottom: 1px solid #e9ecef;
    border-radius: 0;
    padding: 0.75rem 1rem;
}

.mk-categories-sidebar .list-group-item:last-child {
    border-bottom: none;
}

.mk-categories-sidebar .list-group-item:hover {
    background-color: var(--mk-light-color);
}

.mk-categories-sidebar .list-group-item.active {
    background-color: var(--mk-primary-color);
    border-bottom-color: var(--mk-primary-color);
    color: #fff;
}

.mk-categories-sidebar .list-group-item.active:hover {
    background-color: #c42126;
}

.mk-categories-sidebar .mb-2 .list-group-item {
    border-bottom: 1px solid #e9ecef;
}

.mk-categories-sidebar .ms-3 .list-group-item {
    padding-left: 1.5rem;
    font-size: 0.9rem;
}

/* Swiper Navigation */
.mk-courses .swiper-button-next,
.mk-courses .swiper-button-prev,
.mk-featured-courses .swiper-button-next,
.mk-featured-courses .swiper-button-prev,
.mk-category-courses .swiper-button-next,
.mk-category-courses .swiper-button-prev,
.mk-category-slider .swiper-button-next,
.mk-category-slider .swiper-button-prev,
.mk-slider .swiper-button-next,
.mk-slider .swiper-button-prev {
    color: var(--mk-primary-color);
}

.mk-courses .swiper-button-next:after,
.mk-courses .swiper-button-prev:after,
.mk-featured-courses .swiper-button-next:after,
.mk-featured-courses .swiper-button-prev:after,
.mk-category-courses .swiper-button-next:after,
.mk-category-courses .swiper-button-prev:after,
.mk-category-slider .swiper-button-next:after,
.mk-category-slider .swiper-button-prev:after,
.mk-slider .swiper-button-next:after,
.mk-slider .swiper-button-prev:after {
    font-size: 1.5rem;
    font-weight: bold;
}

.mk-slider .swiper-pagination-bullet-active {
    background: var(--mk-primary-color);
}

/* Swiper Slides */
.categorySwiper .swiper-slide,
.courseSwiper .swiper-slide,
.featuredCoursesSwiper .swiper-slide,
.categoryCoursesSwiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

.categorySwiper .swiper-slide .card,
.courseSwiper .swiper-slide .card,
.featuredCoursesSwiper .swiper-slide .card,
.categoryCoursesSwiper .swiper-slide .card {
    width: 100%;
    height: 100%;
}

/* Search Form */
.mk-search-form .form-control:focus {
    border-color: var(--mk-primary-color);
    box-shadow: 0 0 0 0.25rem rgba(222, 39, 44, 0.25);
}

/* Courses Filter Layout */
@media (min-width: 992px) {
    .mk-search .mk-search-col {
        flex: 0 0 80%;
        max-width: 80%;
    }
    
    .mk-search .mk-filter-col {
        flex: 0 0 20%;
        max-width: 20%;
    }
    
    .mk-courses-filter .mk-filter-col-standalone {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* Filter Section */
.mk-courses-filter .form-check-input:checked {
    background-color: var(--mk-primary-color);
    border-color: var(--mk-primary-color);
}

.mk-category-filter {
    scrollbar-width: thin;
}

.mk-category-filter::-webkit-scrollbar {
    width: 6px;
}

.mk-category-filter::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}

/* Pagination */
.mk-courses .pagination .page-link {
    color: var(--mk-primary-color);
}

.mk-courses .pagination .page-item.active .page-link {
    background-color: var(--mk-primary-color);
    border-color: var(--mk-primary-color);
}

/* Buttons */
.mk-courses .btn-danger,
.mk-categories .btn-danger,
.mk-course-detail .btn-danger,
.mk-featured-courses .btn-danger,
.mk-category-courses .btn-danger,
.mk-category-slider .btn-danger,
.mk-search .btn-danger {
    background-color: var(--mk-primary-color);
    border-color: var(--mk-primary-color);
}

.mk-courses .btn-danger:hover,
.mk-categories .btn-danger:hover,
.mk-course-detail .btn-danger:hover,
.mk-featured-courses .btn-danger:hover,
.mk-category-courses .btn-danger:hover,
.mk-category-slider .btn-danger:hover,
.mk-search .btn-danger:hover {
    background-color: #c42126;
    border-color: #c42126;
}

.mk-courses .btn-outline-danger,
.mk-categories .btn-outline-danger,
.mk-course-detail .btn-outline-danger,
.mk-featured-courses .btn-outline-danger,
.mk-category-courses .btn-outline-danger,
.mk-category-slider .btn-outline-danger {
    color: var(--mk-primary-color);
    border-color: var(--mk-primary-color);
}

.mk-courses .btn-outline-danger:hover,
.mk-categories .btn-outline-danger:hover,
.mk-course-detail .btn-outline-danger:hover,
.mk-featured-courses .btn-outline-danger:hover,
.mk-category-courses .btn-outline-danger:hover,
.mk-category-slider .btn-outline-danger:hover {
    background-color: var(--mk-primary-color);
    border-color: var(--mk-primary-color);
    color: white;
}

/* Responsive */
@media (max-width: 992px) {
    .mk-slider-content h2 {
        font-size: 2rem;
    }

    .mk-slider-content p {
        font-size: 1rem;
    }
    
    .mk-categories-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .mk-slider-content h2 {
        font-size: 1.8rem;
    }

    .mk-slider-content p {
        font-size: 0.9rem;
    }

    .mk-section-title {
        font-size: 1.5rem;
    }
    
    .mk-course-card .card-img-top,
    .mk-no-image {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .mk-slider-content h2 {
        font-size: 1.5rem;
    }

    .mk-slider-content p {
        font-size: 0.8rem;
    }
    
    .mk-slider-content {
        padding: 1rem;
    }
    
    .mk-course-card .card-img-top,
    .mk-no-image {
        height: 120px;
    }
    
    .mk-category-slide {
        height: 150px;
    }
}

/* Accordion Styles */
.mk-course-detail .accordion-button:not(.collapsed) {
    background-color: rgba(222, 39, 44, 0.1);
    color: var(--mk-primary-color);
}

.mk-course-detail .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(222, 39, 44, 0.25);
}

/* Badge Colors */
.mk-courses .badge.bg-danger,
.mk-categories .badge.bg-danger {
    background-color: var(--mk-primary-color) !important;
}

/* Text Colors */
.mk-courses .text-danger,
.mk-categories .text-danger,
.mk-course-detail .text-danger,
.mk-featured-courses .text-danger,
.mk-category-courses .text-danger,
.mk-category-slider .text-danger {
    color: var(--mk-primary-color) !important;
}

/* Embed Responsive for YouTube */
.mk-embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    margin-bottom: 1rem;
}

.mk-embed-responsive::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.mk-embed-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
}

/* Content List Styles */
.mk-content-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.mk-content-list > li {
    margin-bottom: 1rem;
}

.mk-content-list ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
}

.mk-content-list ul ul {
    list-style-type: circle;
}

.mk-content-list li {
    margin-bottom: 0.25rem;
    line-height: 1.6;
}

/* Course Detail Meta */
.mk-course-detail .course-meta-item {
    font-size: 0.95rem;
}

.mk-course-detail .course-meta-item i {
    width: 20px;
    text-align: center;
}

.mk-course-detail .card-title {
    color: var(--mk-dark-color);
}

.mk-course-detail .accordion-button:not(.collapsed) {
    background-color: rgba(222, 39, 44, 0.1);
    color: var(--mk-primary-color);
}

.mk-course-detail .accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(222, 39, 44, 0.25);
}

.mk-course-detail .list-group-item h5 {
    font-size: 1rem;
    font-weight: 500;
}

/* Search Offcanvas Styles */
.mk-search-offcanvas {
    width: 400px !important;
}

@media (max-width: 576px) {
    .mk-search-offcanvas {
        width: 100% !important;
    }
}

.mk-search-offcanvas .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mk-search-offcanvas .btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Page Header with Search Button */
.mk-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.mk-page-header h1,
.mk-page-header .mk-section-title {
    margin-bottom: 0;
}

.mk-search-trigger-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    background-color: var(--mk-primary-color);
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.mk-search-trigger-btn:hover {
    background-color: #c42126;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(222, 39, 44, 0.3);
}

.mk-search-trigger-btn i {
    font-size: 1rem;
}

@media (max-width: 576px) {
    .mk-search-trigger-btn span {
        display: none;
    }
    
    .mk-search-trigger-btn {
        padding: 0.5rem 0.75rem;
    }
}

/* Offcanvas Category Tree */
.mk-offcanvas-category-tree-container {
    position: relative;
}

.mk-offcanvas-category-tree-select {
    display: flex;
    align-items: center;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    padding: 0.375rem 0.75rem;
    background-color: #fff;
    min-height: 38px;
    cursor: pointer;
}

.mk-offcanvas-category-tree-select:hover {
    border-color: #86b7fe;
}

.mk-offcanvas-selected-categories {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.mk-offcanvas-selected-categories .placeholder-text {
    color: #6c757d;
}

.mk-offcanvas-category-tree-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    max-height: 250px;
    overflow-y: auto;
}

.mk-offcanvas-category-tree-content {
    padding: 0.5rem;
}

.mk-offcanvas-category-item {
    margin-bottom: 0.25rem;
}

.mk-offcanvas-category-option {
    display: flex;
    align-items: center;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: background-color 0.15s ease;
}

.mk-offcanvas-category-option:hover {
    background-color: #f8f9fa;
}

.mk-offcanvas-category-option label {
    cursor: pointer;
    margin-bottom: 0;
    user-select: none;
    font-size: 0.85rem;
}

.mk-offcanvas-sub-categories {
    border-left: 2px solid #e9ecef;
    margin-left: 0.5rem;
    padding-left: 0.5rem;
}

.mk-offcanvas-category-tree-actions {
    padding: 0.5rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
}

#mkOffcanvasToggleCategoryTree {
    padding: 0.25rem 0.5rem;
    border: none;
    background: transparent;
}

#mkOffcanvasToggleCategoryTree:hover {
    background-color: #f8f9fa;
}

#mkOffcanvasToggleCategoryTree i {
    transition: transform 0.3s ease;
}

.mk-offcanvas-category-tree-open #mkOffcanvasToggleCategoryTree i {
    transform: rotate(180deg);
}

/* Custom Fields Toggle */
.mk-offcanvas-custom-fields-container {
    padding: 0.75rem;
    border: 1px solid #e9ecef;
    border-radius: 0.375rem;
    background-color: #fff;
}

.mk-offcanvas-custom-fields-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 0.5rem 0;
    color: #495057;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mk-offcanvas-custom-fields-toggle:hover {
    color: #212529;
}

.mk-offcanvas-custom-fields-toggle i {
    transition: transform 0.3s ease;
    margin-left: 0.5rem;
    color: #6c757d;
}

.mk-offcanvas-custom-fields-toggle.collapsed i {
    transform: rotate(-90deg);
}

.mk-offcanvas-custom-fields-content {
    transition: all 0.3s ease;
    overflow: hidden;
}

.mk-offcanvas-custom-fields-content.collapsed {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    margin-top: 0;
}

.mk-offcanvas-custom-fields-content:not(.collapsed) {
    max-height: none;
    opacity: 1;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.mk-offcanvas-custom-field-group {
    border-bottom: 1px solid #f8f9fa;
    padding-bottom: 0.75rem;
}

.mk-offcanvas-custom-field-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mk-offcanvas-custom-field-group .mb-3:last-child {
    margin-bottom: 0 !important;
}

.mk-offcanvas-custom-field-options {
    margin-top: 0.5rem;
}

.mk-offcanvas-custom-field-options .form-check {
    margin-bottom: 0.25rem;
    padding-left: 1.25rem;
}

.mk-offcanvas-custom-field-options .form-check:last-child {
    margin-bottom: 0;
}

.mk-offcanvas-custom-field-options .form-check-label {
    font-size: 0.875rem;
    color: #495057;
    cursor: pointer;
    user-select: none;
}

.mk-offcanvas-custom-field-options .form-check-input {
    margin-top: 0.125rem;
}

.mk-offcanvas-custom-fields-container label {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
    color: #495057;
    font-weight: 500;
}

/* Search Results Styles */
.mk-search-results .mk-active-filters .badge {
    font-weight: 500;
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
}

.mk-search-results .mk-active-filters .badge a {
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.mk-search-results .mk-active-filters .badge a:hover {
    opacity: 1;
}

.mk-search-results mark {
    background-color: #fff3cd;
    padding: 0.1rem 0.2rem;
    border-radius: 0.2rem;
}

.mk-no-results {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 1rem;
    padding: 3rem;
}

.mk-no-results .display-1 {
    font-size: 5rem;
}

/* Admin Panel Styles */
.mk-admin-wrap {
    max-width: 1200px;
}

.mk-admin-card {
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mk-admin-stats .card {
    border-left: 4px solid var(--mk-primary-color);
}

.mk-admin-stats .card-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--mk-primary-color);
}
