:root {
    --orange-color: #f46a24;
    --orange-hover: #ff7f3f;
    --orange-text: white;
    --secondary-color: #888888;
    /* Gray */
    --white-color: #ffffff;
    --primary-color: #f46a24;
    --text-dark: #333;
    --bk-secondary-color: #f5f5f5;



}

.search-body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.header {
    position: fixed;
    top: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.logo {
    margin-bottom: 20px;
}

.logo img {
    width: 150px;
    height: auto;
}

.search-container {
    width: 100%;
    max-width: 600px;
    text-align: center;
    position: relative;
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 6px rgba(32, 33, 36, 0.28);
    padding: 5px;
    transition: box-shadow 0.3s;
    border: 1px solid #f46a24;
}

.search-container.focused {
    box-shadow: 0 6px 10px rgba(32, 33, 36, 0.4);
}

.search-box {
    position: relative;
    width: 100%;
}



.suggestions {
    width: 100%;
    background-color: white;
    max-height: 300px;
    /* Adjust based on item height (~30px * 10 items) */
    overflow-y: auto;
    /* Enables scrolling when more than 10 items */
    display: none;
    scrollbar-width: none;
    /* For Firefox */
    border-radius: 0px 0px 20px 20px;
}

.suggestions::-webkit-scrollbar {
    display: none;
    /* For Chrome, Safari */
}


.suggestion-item {
    padding: 10px 15px;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease-in-out;
    border-radius: 50px;
}

.suggestion-item:hover,
.suggestion-item.highlight {
    background-color: #f0f0f0;
    /* Light gray background */
    border-radius: 5px;
    border-left: 4px solid #f05a28;
}

/* Mobile */
@media (max-width: 600px) {

    .signup-btn {

        font-size: 10px !important;

        padding: 5px 10px !important;

    }




    .search-container {
        width: 85%;
    }

    .visitor-counter {
        /* position: fixed !important; */
        /* display: flex !important;               */
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        margin-top: 5px !important;
        /* optional: to fine-tune spacing */

    }

    .visitor-counter .counter {
        font-family: 'Book Antiqua', Palatino, serif;
        font-size: 20px !important;
        font-weight: bold !important;
        color: #888 !important;
        display: inline-flex !important;
    }

    .visitor-counter .label {
        font-family: 'Book Antiqua', Palatino, serif;
        font-size: 10px !important;
        color: #888 !important;
        display: inline-block !important;
        font-weight: bold !important;

    }


}

.mic-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    /* Increased size */
    height: 30px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease-in-out;
    color : #f46a24;
}

.mic-icon:hover {
    opacity: 1;
}

.mic-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid lightgray;
}

.mic-container i {
    font-size: 40px;
    color: red;
}
.left-arrow{
    color: #f46a24;
}
.background-button{
    background-color: #f46a24;
}

/* .listening {
    animation: pulse 1.5s infinite;
} */

/* Pulse animation for mic button */
/* Pulse animation without size increase */
@keyframes pulseEffect {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    50% {
        box-shadow: 0 0 15px 7px rgba(255, 0, 0, 0.3);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}


/* Add this class dynamically when voice recognition is active */
.listening {
    animation: pulseEffect 1.5s infinite;
    border-radius: 50%;
}


.input-group {
    width: 97% !important;
}

.top-right {
    position: fixed;
    top: 10px;
    right: 20px;
    display: flex;
    align-items: center;
}

.lesson-top-right {
    position: absolute;
    top: 10px;
    right: 20px;
    display: flex;
    align-items: center;
}
.searchresults-top-right {
    position: absolute;
    top: 10px;
    right: 20px;
    display: flex;
    align-items: center;
}
.playlist-top-right {
    position: absolute;
    top: 10px;
    right: 20px;
    display: flex;
    align-items: center;
}





.clr-p {
    color: white !important;
}

.signup-btn:hover .clr-p {
    color: #f46a24 !important;
    /* Change icon color to orange on hover */
}

.signup-btn {
    background-color: #f46a24;
    /* Primary orange color */
    color: white;
    font-size: 16px;
    /* font-weight: bold; */
    border: none;
    border-radius: 30px;
    /* Smooth rounded corners */
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.signup-btn:hover {
    background-color: white;
    color: #f46a24;
    /* Change text color to orange */
    border: 1px solid #f46a24;
    /* Add orange border */
}

.signup-btn:active {
    background-color: #f46a24;
    /* Keep orange when clicked */
    color: white;
}

.signup-link {
    text-decoration: none;
}

.top-left {
    position: fixed;
    top: 10px;
    left: 20px;
    display: flex;
    align-items: center;
}

/* model */

/* Gray background for the whole screen */
.modal-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Gray with transparency */
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    /* Hidden by default */
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 999;
    /* Ensure the modal is on top */
}

/* Show modal when active */
.modal-background.active {
    visibility: visible;
    opacity: 1;
}

/* Small white card */
.modal-card {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    width: 300px;
    position: relative;
}

/* Style for the title and message */
.modal-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.modal-card p {
    margin-bottom: 20px;
    font-size: 16px;
}

/* Login button styling */
.modal-card button {
    background-color: #f46a24;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-card button:hover {
    background-color: #f46a24;
}

/* Close button styling */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: #aaa;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #333;
}

.btn-container {
    display: flex;
    justify-content: end;
    align-items: center;
}

.redirect-signin {
    background-color: #f46a24 !important;
    color: white !important;
    font-size: 16px !important;
    /* font-weight: bold; */
    border: none !important;
    border-radius: 30px !important;
    padding: 10px 20px !important;
    cursor: pointer !important;
    transition: all 0.3s ease-in-out !important;
}

.redirect-signin:hover {
    background-color: white !important;
    color: #f46a24 !important;
    border: 1px solid #f46a24 !important;
}

.visitor-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    /* optional: to fine-tune spacing */

}

.visitor-counter .counter {
    font-family: 'Book Antiqua', Palatino, serif;
    font-style: italic;
    font-size: 28px;
    font-weight: bold;
    color: #888;
    display: inline-flex;
}

.visitor-counter .label {
    font-family: 'Book Antiqua', Palatino, serif;
    font-style: italic;
    font-size: 15px;
    color: #888;
    display: inline-block;
    font-weight: bold;

}

@media (max-height: 500px) {

    .visitor-counter {
        margin-top: 230px;
    }
}

.image-container {
    width: 100%;
    /* Adjust size as needed */
    height: 100%;
    /* Keep same as width for 1:1 ratio */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ccc;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image covers the entire square */
}

.music-div {
    position: relative;
    padding-right: 40px;
    padding-left: 0px;
}

.song-checkbox {
    position: absolute;
    right: 0%;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    z-index: 1;
    width: 25px;
    height: 25px;
    color: white;
    accent-color: #f46a24;
    /* Modern browsers */
    background-color: #f46a24;
    /* fallback */
    border: 2px solid #f46a24;
    border-radius: 4px;

}

.title {
    text-align: center;
    flex-grow: 1;
    font-size: 34px;
    font-weight: bold;
    color: #222;
    /* margin-left: -417px; */
}

.container {
    min-width: 70% !important;
    padding: 15px;
}

.lesson-bg-clr {
    background-color: #fdf4e7;

}

.content {
    text-align: center;
    min-width: 10% !important;
}

/* Table wrapper for responsive behavior */
.table-wrapper {
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

.line-table {
    border-collapse: collapse;
    margin: 0 auto;
    background-color: #fdf4e7;
    color: #222;
    /* width: 100%; */
}

.line-cell {
    font-size: 28px;
    /* padding: 8px 5px; */
    text-align: left;
    white-space: nowrap;
    font-family: monospace;
}

.separator {
    /* padding: 0 12px; */
    text-align: center;
    white-space: nowrap;
    font-family: monospace;
    font-size: 28px;
}

.separator-double {
    padding: 0 10px 0 0px;
    text-align: center;
    white-space: nowrap;
    font-family: monospace;
    letter-spacing: -11px;
    font-size: 28px;
}

.titles {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-weight: bold;
    font-size: 18px;
}

.info {
    text-align: left;
    font-size: 20px;
    margin-bottom: 15px;
    color: #222;
}

.right {
    width: 25%;
    background: #fff;
    height: auto;
    margin-left: 10px;
}

.lesson-sec {
    display: flex;
    width: 100%;
}

.lesson-title {
    width: 100%;
    text-align: center;
    font-size: 30px;
    padding-top: 0px;
    margin-top: 0px;
}

.subtitle-text {
    font-weight: 600;
    font-size: 25px;
}

.theory-content p {
    font-size: 20px;
    margin-bottom: 0px;
}

.theory-content {
    padding: 0px 100px;
}

.double-lines {
    letter-spacing: -9px;
}

.theory-image {
    width: 600px;
    height: auto;
}


.btn-custm {
    padding: 0.3rem 1rem;
    border-radius: 2rem;
    border: none;
    background-color: #ffff;
    color: #fc7645;
    border: #fc7645 0.5px solid;
}

.custm-icon {
    height: 25px;
}

.line-table td {
    padding: 8px 0px;
    text-align: left;
    width: auto;
    font-size: 20px;
}

.table-tr-rp {
    text-align: right !important;
}

.line-table td span {
    text-align: right;
}

.full-width {
    text-align: left !important;
    font-weight: bold;
    font-size: 20px;
}

.table-tr {
    padding-left: 10px !important;
    /* display: flex;
            justify-content: space-around; */
}

.single-separator {
    text-align: right !important;
}

/* Media Queries */
@media (max-width: 768px) {
    .lesson-header {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .title {
        margin-left: 0;
        margin-top: 10px;
    }

    .lesson-sec {
        flex-direction: column;
    }

    .right {
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
    }

    .line-cell {
        font-size: 15px;
        padding: 6px 3px;
    }

    .double-lines {
        letter-spacing: -4px !important;
    }

    .theory-image {
        width: 80%;
        height: auto;
    }

    .theory-content {
        padding: 0px 10px;
    }

    .line-no-cell {
        width: 12px !important;
        font-size: 20px;

    }

    .image-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .line-cell {
        font-size: 14px;
    }

    .lesson-logo {
        width: 80px;
    }

    .title {
        font-size: 20px;
    }

    .info {
        font-size: 14px;
    }

    .line-table td {
        font-weight: normal;
        font-size: 14px;
    }

    .double-lines {
        letter-spacing: -4px !important;
    }

    .theory-image {
        width: 80%;
        height: auto;
    }

    .theory-content {
        padding: 0px 10px;
    }
}

.playlist-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #4CAF50;
    /* green */
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.title_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    width: 100%;
}

.btn-cust-clr {
    font-size: 4rem;
    cursor: pointer;
    margin: 0px 1rem;
}

.btns_container {
    /* padding: 1rem; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0px;
    width: 100%;


    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(3, 3, 3, 0.75);
    border-top: 1px solid rgba(255, 255, 255, 0.125);

}

.time_container {
    /* font-size: 2rem; */
    padding-right: 1rem;
}

.main_container_block {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75%;
    width: 100%;
    padding-bottom: 100px;
    padding-left: 5rem;
    padding-right: 5rem;
}

h1 {
    font-size: calc(var(--dynamic-font-size, 16px) * 2);
}

/* p {
    font-size: calc(var(--dynamic-font-size, 16px) * 0.9);
} */

.full_screen_cls {
    cursor: pointer;
    /* font-size: 33px; */
}

.close-custm-btn {
    /* font-size: 25px; */
    cursor: pointer;
    margin-left: 1rem;
}

.close-btn-outer-container {
    margin-left: 0.5rem;
    border: #FFC000 0.5px solid;
    border-radius: 5px;
    padding: 3px 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.cover-container {
    width: 100%;
    height: 100%;
    background-color: rgb(255, 255, 255);
    position: absolute;
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    font-size: 150px;
}

.cover-container-text {
    font-size: 80px;
}

/* Apply column direction for smaller screens */
@media screen and (max-width: 1080px) {
    /* .title_container {
                flex-direction: column;
                text-align: center;
            } */

    .title_container>div {
        width: 100%;
        /* Make divs take full width */
        text-align: center;
        /* Center align content */
    }

    .title {
        margin-right: 0;
        /* Remove negative margin */
    }

    .time_container {
        margin-top: 0.5rem;
        /* Add some spacing */
    }
}

.musicDetails-card {
    font-size: 40px;
}



/* .lesson-header {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(3, 3, 3, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.125);
} */

.lesson-subheader {
    display: flex;
    padding-right: 0.5rem;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 15px;
    font-size: 25px;
}

html {
    scroll-behavior: smooth;
}

.title_sub_container {
    width: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.double-separator {
    padding-right: 10px;
    padding-left: 10px;
}



.login-container {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.registerbtn-brand {
    background-color: #f46a24;
    color: white;
    font-weight: bold;
    border-radius: 8px;
    padding: 12px;
    width: 100%;
    transition: 0.3s;
    border: none;
}

.registerbtn-brand:hover {
    background-color: white;
    color: #f46a24;
    border: 1px solid #f46a24;
}

.password-login {
    display: block;
    margin-top: 10px;
    color: #f46a24;
    text-decoration: none;
    cursor: pointer;
}

.password-login:hover {
    text-decoration: underline;
}

.password-toggle {
    position: relative;
}

.password-toggle .fa-eye,
.password-toggle .fa-eye-slash {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
}

.upload-container {
    max-width: 500px;
    margin: auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}



button {
    /* width: 100% !important; */
    background-color: #f46a24;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}


.fa_icon_style {
    font-size: 15px;
}

/* Slider Track Styling */
input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #f46a24 0%, #f46a24 50%, #ddd 50%, #ddd 100%);
    border-radius: 5px;
    outline: none;
    transition: background 0.3s ease;
}

/* Slider Thumb Styling */
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: #f46a24;
    border-radius: 50%;
    cursor: pointer;
}

input[type=range]::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: #f46a24;
    border-radius: 50%;
    cursor: pointer;
}

/* Left side styling for the woman image */
.illustration {
    text-align: center;
}

.illustration img {
    max-width: 100%;
    /* Makes image responsive */
    height: auto;
    border-radius: 10px;
    transform: rotateY(180deg);
}

.illustration p {
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #555;
}

/* Right side styling for the registration form */
.login-form {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.login-form h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.social-login button {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.social-login .google {
    background-color: #db4437;
    color: #fff;
}

.social-login .linkedin {
    background-color: #0077b5;
    color: #fff;
}

.social-login .facebook {
    background-color: #3b5998;
    color: #fff;
}

.divider {
    text-align: center;
    margin: 20px 0;
    font-size: 1.1rem;
    color: #777;
}

form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

form button {
    width: 100%;
    padding: 12px;
    background-color: #f46a24;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #e55e46;
}
/* 
.active {
    color: #f46a24;
} */

@media (max-width: 767px) {

    /* Adjust the form layout for better mobile compatibility */
    .register-content {
        padding: 15px;
    }

    .illustration {
        display: none;
        /* Hide illustration for better space management */
    }

    .login-form {
        padding: 10px;
    }

    .login-form h2 {
        font-size: 1.2rem;
        text-align: center;
    }

    .mb-3 input,
    .mb-3 select {
        font-size: 14px;
        padding: 8px;
    }

    .mb-3 label {
        font-size: 12px;
    }

    /* Dropdown width and appearance adjustments */
    select#role {
        width: 100%;
        font-size: 14px;
        padding: 8px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    /* Buttons adjusted for better touch targets */
    .btn {
        width: 100%;
        padding: 10px;
    }

    #save {
        margin-top: 15px;
    }

    /* Slider customization for mobile */
    input[type="range"] {
        width: 100%;
    }

    input[type="range"]+span {
        display: block;
        text-align: right;
        margin-top: 5px;
        font-size: 12px;
    }
}

.custom-select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding-right: 30px;
    /* Space for the arrow */
}

.custom-arrow {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
}

.error-message {
    display: block;
    color: red;
    font-size: 14px;
    margin-top: 0px !important;
    /* Forcefully set to 0 */
    padding-top: 0px !important;
    /* Remove any padding */
}


.btn-orange {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(244, 106, 36, 0.2);
    margin-top: 10px;

}

.btn-orange:hover {
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    box-shadow: 0 6px 12px rgba(244, 106, 36, 0.3);
}

.btn-orange:active {
    background-color: var(--primary-color);
    color: white;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2);
}
.form-row {
    margin-bottom: 15px;
}

label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.input-small {
    max-width: 520px;
    width: 100%;
}

.btn-cancel {
    background-color: var(--secondary-color);
    color: var(--white-color);
    border: 1px solid var(--secondary-color);
    border-radius: 25px;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.btn-cancel:hover {
    background-color: var(--white-color);
    color: var(--secondary-color);
    box-shadow: 0 6px 12px rgba(136, 136, 136, 0.3);
}

.btn-cancel:active {
    background-color: #666666;
    color: var(--white-color);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.2);
}

.playlist-header {
    /* background-color: #fc7645; */
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
}

.playlist1-header {
    background-color: white;
    color: #fc7645;
    padding: 10px 15px;
    border-radius: 5px;
}

.lesson-list {
    margin-top: 10px;
}

.book-card {
    display: flex;
    align-items: flex-start;
    min-height: 150px;
}

.book-card img {
    width: 150px;
    height: auto;
    object-fit: cover;
    flex-shrink: 0;
    margin-right: 50px;
}

.book-details {
    flex: 1;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.book-title {
    font-size: 25px;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.book-description {
    font-size: 15px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.book-buttons {
    margin-top: 27px;
}


.btn.preview {
    background: var(--primary-color);
}

.btn:hover {
    background: #fff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.card-seperator {
    width: 100%;
    background: var(--primary-color);
    height: 1px;
}

.p-clr {
    color: var(--primary-color);
}

.wrapper {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    min-height: 100vh;
    padding: 20px;
}

.content-box {
    width: 90%;
    background: white;
    padding: 20px;
    /* border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
}

.details-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.left-panel,
.bookdetails-right-panel {
    flex: 1;
    min-width: 250px;
}

.left-panel {
    background: var(--bk-secondary-color);
    padding: 15px;
    border-radius: 8px;
}

.content-list {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

.content-list p {
    margin: 10px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
}


.left-panel h3 {
    font-weight: 600;
    font-size: 2rem;
    text-align: center;
}

:not(.btn-check)+.btn:active {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.info-box {
    background: var(--bk-secondary-color);
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

.value {
    font-size: 18px;
    font-weight: bold;
}

.text-highlight {
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 1rem;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    opacity: 0.9;
    border-color: var(--primary-color);
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.mobile-back-span {
    display: none;
}

.line-content {
    white-space: pre-wrap;
    font-family: monospace;
}

.payment-img img {
    max-width: 100px;
}

.payment-text {
    color: #4CAF50;
    margin: 10px 0;
}

a {
    text-decoration: none;
    color: #f46a24;
}

a:hover {
    text-decoration: underline;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.acknowledgement-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #fff;
    font-family: "Source Sans Pro", sans-serif;
}


.acknowledgement-container {
    text-align: center;
    border: 2px solid #f46a24;
    border-radius: 10px;
    padding: 20px;
    width: 80%;
    max-width: 900px;
    background: #fff;
}

.bk-2-lessons-body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

.bk-2-lessons-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: -20px;
}

.bk-2-lessons-logo {
    left: 20px;
    width: 100px;
    /* margin-top: 13px; */
}

.bk-2-lessons-title {
    text-align: center;
    flex-grow: 1;
    font-size: 24px;
    font-weight: bold;
    margin-left: -417px;
}

.bk-2-lessons-container {
    min-width: 70% !important;
    background-color: #eeeeee;
    padding: 15px;
}

.bk-2-lessons-line-cell {
    font-size: 17px;
    /* padding: 8px 5px; */
    text-align: center;
    white-space: nowrap;
    font-family: monospace;
}

.bk-2-lessons-line-separator {
    padding: 0 5px;
    text-align: center;
    white-space: nowrap;
    font-family: monospace;
}

.bk-2-lessons-info {
    text-align: left;
    font-size: 16px;
    margin-bottom: 15px;
}

.bk-2-lessons-right {
    width: 40%;
    background: lightgray;
    height: auto;
    margin-left: 10px;
}

.bk-2-lessons-sec {
    display: flex;
    width: 100%;
}

@media (max-width: 768px) {
    .bk-2-lessons-header {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .bk-2-lessons-title {
        margin-left: 0;
        margin-top: 10px;
    }

    .bk-2-lessons-sec {
        flex-direction: column;
    }

    .bk-2-lessons-right {
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
    }

    .bk-2-lessons-line-cell {
        font-size: 15px;
        padding: 6px 3px;
    }
}


@media (max-width: 480px) {
    .bk-2-lessons-line-cell {
        font-size: 14px;
    }

    .bk-2-lessons-logo {
        width: 80px;
    }

    .bk-2-lessons-title {
        font-size: 20px;
    }

    .bk-2-lessons-info {
        font-size: 14px;
    }
}

.bk-lessons-body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

.bk-lessons-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: -20px;
}

.bk-lessons-logo {
    left: 20px;
    width: 100px;
    margin-top: 13px;
}

.bk-lessons-title {
    text-align: center;
    flex-grow: 1;
    font-size: 24px;
    font-weight: bold;
    margin-left: -417px;
}

.bk-lessons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    background-color: #eeeeee;
    /* margin-left: 173px; */
}

.bk-lessons-content {
    text-align: center;
}

.bk-lessons-line-cell {
    font-size: 17px;
    min-width: 5px;
    /* Consistent column width */
    padding: 0 5px;
    text-align: center;
    white-space: nowrap;
    font-family: monospace;
}

.bk-lessons-separator {
    padding: 0 5px;
    text-align: center;
    white-space: nowrap;
    font-family: monospace;
}

.bk-lessons-info {
    text-align: left;
    font-size: 16px;
    margin-bottom: 15px;
}

.bk-lessons-right {
    width: 40%;
    background: lightgray;
    height: auto;
    margin-left: 10px;
}

.bk-lessons-sec {
    display: flex;
}

@media (max-width: 600px) {
    .bk-lessons-header {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .bk-lessons-title {
        margin-left: 0px;
    }

    .bk-lessons-container {
        margin-left: 0px;
        width: 100%;
    }

    .bk-lessons-sec {
        flex-direction: column;
    }
}

.bookdetails-body {
    margin: 0;
    padding: 0;
    background-color: #fff;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
}

.bookdetails-title {
    text-align: left;
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 10px;
}

.content-list::-webkit-scrollbar {
    width: 5px;
}

.content-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 5px;
}

.bookdetails-right-panel {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.books-body {
    font-family: "Source Sans Pro", sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #fff;
}

.books-container {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.books-btn {
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 1rem;
    text-decoration: none;
    font-size: 16px;
    margin-right: 5px;
}

.books-btn.preview {
    background: var(--primary-color);
}
.books-btn.preview:hover {
    background: #fff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    text-decoration: none;
}


.books-btn {
    transition: all 0.3s ease-in-out;
}


@media screen and (max-width: 768px) {

    .book-card img {
        width: 120px;
        margin-right: 20px;
    }

    .book-title {
        font-size: 23px;
        white-space: normal;
        text-overflow: initial;
    }

    .book-description {
        font-size: 12px;
    }

    .book-details {
        overflow: initial;
    }

}

.lesson-body {
    font-family: Arial, sans-serif;
    margin: 10px;
}

.lesson-header {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    width: 100%;
    margin-bottom: -20px;
}

.lesson-logo {
    left: 20px;
    width: 70px;
    /* margin-top: 13px; */
}

.lessonslide-body {
    background-color: black;
    /* height: 90vh; */
    /* position: relative; */
}

.lessonslide-title {
    font-size: 40px;
    margin: 0px;
}

.lessonslide-custm-icon {
    color: #FFC000;
    height: 35px;
}

@media screen and (min-width: 281px) and (max-width: 767px) {

    /* Styles for landscape phones */
    .lessonslide-title {
        font-size: 20px;
    }

    .musicDetails-card {
        font-size: 20px;
    }

    td {
        font-size: 20px;
    }

    .main_container_block {
        padding-right: 10px;
        padding-left: 10px;
    }
}

@media screen and (max-width: 768px) {

    .playlist-middle,
    .playlist-right {
        width: 100%;
        margin-top: 15px !important;
    }

    .form-container {
        width: 100%;
        padding: 0 15px;
    }

   
}

.input-group > .register-form-control,
.input-group > .register-form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
}



.register-form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.register-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /* Full viewport height */
}

.register-btn-brand {
    background-color: #f46a24 !important;
    /* Example color */
    color: white !important;
    font-weight: bold;
    border-radius: 5px;
    padding: 10px 15px;
    transition: background 0.3s ease;
}

.register-btn-brand:hover {
    background-color: #FF5722;
    /* Darker shade on hover */
}

.password-body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f9fa;
}


.password-container {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 350px;
}

.password-input-group {
    position: relative;
    margin-bottom: 15px;
}

.signin-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.upload-body {
    background-color: #f8f9fa;
    padding-top: 50px;
}


@media screen and (max-width: 768px) {
    .wrapper {
        padding: 10px;
    }

    .details-container {
        flex-direction: column;
    }

    .content-list {
        max-height: 300px;
    }

    .title {
        font-size: 1.4rem;
    }

    .content-box {
        padding: 0px;
    }

    .left-panel h3 {
        font-size: 1.2rem;
    }

    .content-list p {
        font-size: 15px;
    }

    .right-panel h4 {
        font-size: 18px;
    }

    .right-panel h3 {
        font-size: 1.3rem;
    }

    .mobile-back-span {
        display: flex;
        padding: 15px;
        padding-bottom: 0px;
    }

    .desktop-back-span {
        display: none;
    }

}

@media screen and (max-width: 768px) {
    .wrapper {
        padding: 10px;
    }

    .details-container {
        flex-direction: column;
    }

    .content-list {
        max-height: 300px;
    }

    .bookdetails-title {
        font-size: 1.4rem;
    }

    .content-box {
        padding: 0px;
    }

    .left-panel h3 {
        font-size: 1.2rem;
    }

    .content-list p {
        font-size: 15px;
    }

    .right-panel h4 {
        font-size: 18px;
    }

    .right-panel h3 {
        font-size: 1.3rem;
    }

    .mobile-back-span {
        display: flex;
        padding: 15px;
        padding-bottom: 0px;
    }

    .desktop-back-span {
        display: none;
    }

}


.btn-brand {
     background-color: #f46a24;
     color: white;
     font-weight: bold;
     border-radius: 8px;
     padding: 12px;
     width: 100%;
     transition: 0.3s;
     border: none;
 }

 .btn-brand:hover {
     background-color: white;
     color: #f46a24;
     border: 1px solid #f46a24;
 }



 .addsong-body {
      font-family: Arial, sans-serif;
      padding: 30px;
    }


    #dropZone {
      width: 500px;
      height: 200px;
      border: 2px dashed #888;
      border-radius: 10px;
      text-align: center;
      line-height: 200px;
      color: #555;
      margin-top: 50px;
    }

    #dropZone.dragover {
      border-color: #009688;
      background: #e0f2f1;
    }

    #output,
    #manualInput {
      width: 500px;
      height: auto;
      background: #f9f9f9;
      border-radius: 6px;
      padding: 20px;
      box-shadow: 0 0 5px #ccc;
      white-space: pre-wrap;
      font-family: monospace;
      margin-bottom: 20px;
    }

    #manualInput {
      font-family: Arial, sans-serif;
      margin-top: 20px;
      border-radius: 6px;
      padding: 15px;
      box-shadow: 0 0 8px #aaa;
    }

    label {
      display: block;
      margin-top: 10px;
    }

    input,
    select {
      width: 300px;
      padding: 6px 10px;
      margin-top: 4px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    .addsong-button {
      margin-top: 15px;
      padding: 10px 15px;
      background: #f46a24;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    .addsong-button:hover {
      background: #00796b;
    }

    .error {
      color: #d32f2f;
      font-weight: bold;
    }

    .success {
      color: #2e7d32;
      font-weight: bold;
    }
  .addsong-h2 {
    text-align: left;
  }


.image-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}

.image-grid img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
