/*!
Theme Name: Eduvalt
Theme URI: https://ifingerstudio.com/eduvalt/
Author: johanspond
Author URI: https://themeforest.net/user/johanspond/
Description: Eduvalt - Online Courses & Education WordPress Theme
Version: 2.0.5
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: eduvalt
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* Style dasar tombol sticky */
.tracking-menu-sticky {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #e73d5e;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 999999999; /* Pastikan lebih tinggi dari Tutor LMS */
    max-width: 90%;
    display: block;
}

/* Pastikan tombol tetap terlihat di atas semua elemen */
.tracking-menu-sticky a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    display: block;
}

/* Hover effect */
.tracking-menu-sticky:hover {
    background: #d73250;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
}

/* Fix untuk dashboard Tutor LMS */
.tutor-dashboard,
.tutor-course-single-wrapper {
    position: relative;
    z-index: 1; /* Pastikan Tutor LMS tidak menutupi tombol */
}


/* Responsif untuk layar kecil (handphone) */
@media screen and (max-width: 768px) {
    .tracking-menu-sticky {
        padding: 10px 20px;
        font-size: 14px;
        bottom: 15px;
        border-radius: 20px;
    }
}

@media screen and (max-width: 480px) {
    .tracking-menu-sticky {
        padding: 8px 16px;
        font-size: 13px;
        bottom: 10px;
        border-radius: 15px;
    }
}