.elementor-kit-102{--e-global-color-primary:#000000;--e-global-color-secondary:#020203;--e-global-color-text:#171616;--e-global-color-accent:#000000;--e-global-color-db21c22:#9EADE8;--e-global-color-3470a76:#FFFFFF;--e-global-color-def3c54:#6585FF;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-size:26px;--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:bold;--e-global-typography-39ae89b-font-family:"Roboto";--e-global-typography-39ae89b-font-size:40px;--e-global-typography-39ae89b-font-weight:600;--e-global-typography-39ae89b-line-height:50px;--e-global-typography-529c36f-font-size:36px;--e-global-typography-529c36f-font-weight:bold;--e-global-typography-563c10b-font-family:"Roboto";--e-global-typography-563c10b-font-size:20px;--e-global-typography-782c09b-font-family:"Tahoma";--e-global-typography-782c09b-font-size:25px;--e-global-typography-782c09b-font-weight:600;--e-global-typography-37b8a0e-font-family:"Roboto";}.elementor-kit-102 e-page-transition{background-color:#FFBC7D;}.elementor-kit-102 button,.elementor-kit-102 input[type="button"],.elementor-kit-102 input[type="submit"],.elementor-kit-102 .elementor-button{padding:0px 0px 0px 0px;}.elementor-kit-102 input:not([type="button"]):not([type="submit"]),.elementor-kit-102 textarea,.elementor-kit-102 .elementor-field-textual{padding:0px 0px 0px 0px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}.elementor-widget:not(:last-child){margin-block-end:0px;}.elementor-element{--widgets-spacing:0px 0px;--widgets-spacing-row:0px;--widgets-spacing-column:0px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-102{--e-global-typography-37b8a0e-font-size:14px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* General styling for the audio bar */
#audio-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #e0f7fa; /* Light cyan with slight blue tint */
    box-shadow: 0px -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    padding: 15px 20px; /* Augmented padding */
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* Makes it responsive */
    gap: 10px; /* Space between elements */
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 15px; /* Increased gap for buttons */
}

.control-button {
    background-color: #007BFF; /* Professional blue */
    border: none;
    color: white;
    padding: 12px 18px; /* Increased padding */
    font-size: 16px;
    border-radius: 8px; /* Rounded rectangle */
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s;
}

.control-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

.speed-control {
    margin-left: 15px; /* Space between speed and buttons */
}

.speed-control select {
    font-size: 14px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: white;
    cursor: pointer;
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1; /* Fills horizontal space */
    margin-top: 10px; /* Space between speed control and progress bar */
    margin-bottom: 10px; /* Space between progress bar and playlist */
}

#progressBar {
    flex-grow: 1;
    height: 8px;
    background-color: #b3e5fc; /* Light blue background for progress bar */
    border-radius: 5px;
    appearance: none;
}

#progressBar::-webkit-slider-thumb {
    appearance: none;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #0288d1; /* Matches hover color of buttons */
    cursor: pointer;
}

.playlist-container {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between label and dropdown */
}

.playlist-label {
    font-size: 14px;
}

#playlistSelector {
    font-size: 14px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: white;
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #audio-bar {
        flex-direction: column;
    }

    .audio-controls, .playlist-container {
        width: 100%;
        justify-content: center;
        margin-bottom: 10px;
    }
}





@media (max-width: 768px) {
    div[style*="position: fixed"] {
        position: relative !important;
        top: auto;
        right: auto;
        margin-top: 20px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}/* End custom CSS */