
.modal-body {
    text-align: justify !important;
}

/* Dropdown container */
.profile-dropdown-menu {
    display: none; /* Initially hidden */
    position: absolute;
    background-color: #2c2f33;
    min-width: 150px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1000;
    top: 100%; /* Position directly below the button */
    left: 0;
}

/* Dropdown items */
.dropdown-item {
    display: block;
    padding: 10px 15px;
    color: white !important;
    font-weight: bold;
    text-decoration: none;
    font-size: 1rem;
    transition: background 0.3s ease-in-out;
}

    .dropdown-item:hover {
        background-color: #41464b;
        border-radius: 4px;
    }

/* Divider styling */
.dropdown-divider {
    margin: 5px 0;
    border: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Show dropdown when active */
.show-dropdown {
    display: block;
}



.lbemail, .lbpassword {
    color: white;
    font-weight: bold;
}

.txtPwd, .txtEmail {
    font-weight: bold;
}

.movie-search-icon, .movie-profile-icon {
    color: white !important;
}

 .movie-profile-icon {
    padding-right: 5px;
}

.movie-search-icon {
    padding-right: 10px;
}

.movie-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: flex-start;
    padding-top: 5px;
    z-index: 5;
}

/* Wrapper to position icon inside the input box */
.movie-search-wrapper {
    position: relative;
    width: 95%; /* You can adjust the width */
}

.movie-search-input {
    padding: 5px 18px;
    font-size: 0.9rem;
    width: 100%;
    border: 2px solid #ddd;
    border-radius: 25px;
    background-color: #f9f9f9;
    color: #333;
    transition: all 0.3s ease;
    margin-left: 3%;
    margin-top: 2%;
}

.movie-search-button {
    position: absolute;
    right: -15px;
    top: 62%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}


.movie-search-icon {
    font-size: 18px;
    color: #aaa;
}

/* Focus effect for the input */
.movie-search-input:focus {
    border-color: #007BFF;
    background-color: #fff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
    outline: none;
}

.movie-search-input::placeholder {
    color: #aaa;
    font-style: italic;
}

/*.movie-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    padding-top: 5px;
    z-index: 5;
}*/

/* Updated styles for the search input */
/*.movie-search-input {
    padding: 12px 20px;
    font-size: 18px;
    width: 90%;
    border: 2px solid #ddd;
    border-radius: 25px;
    background-color: #f9f9f9;
    color: #333;
    transition: all 0.3s ease;
}*/

    /* Focus effect */
    /*.movie-search-input:focus {
        border-color: #007BFF;
        background-color: #fff;
        box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
        outline: none;
    }*/

    /* Placeholder styling */
    /*.movie-search-input::placeholder {
        color: #aaa;
        font-style: italic;
    }*/

.movie-header-right {
    display: flex;
    align-items: center;
    color:white;

}

    .movie-header-right i {        
        font-size: 18px;
        cursor: pointer;
        padding: 10px;
    }


.movie-dropdown {
    position: relative;
    display: none;
}

.movie-dropdown-button {
    background-color: black;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
}

    .movie-dropdown-button:hover {
        /*background-color: #0056b3;*/
    }

.movie-dropdown-menu {
    display: none;
    position: absolute;
    background-color: black;
    min-width: 135px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    border-radius: 5px;
    right: 0;
}

.movie-dropdown-menu-item {
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: background-color 0.2s ease-in-out;
}

    .movie-dropdown-menu-item:hover {
        background-color: #333;
    }

    .movie-dropdown-menu-item i {
        margin-right: 10px;
    }

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: black !important;
    color: #fff;
}

header {
    background-color: black;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between; /* Keeps logo on the left and auth-buttons on the right */
    align-items: center;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Aligns the navigation to the left */
    width: auto; /* Ensure it takes only the space it needs */
}

.auth-buttons {
    display: flex;
    align-items: center;
    margin-left: auto; /* Push auth-buttons to the right */
    padding-right: 15px;
}

.header-logo {
    padding-right: 4rem;
    padding-left: 1rem;
}

.search-bar {
    display: flex;
    align-items: center;
}

    .search-bar input {
        padding: 5px;
        font-size: 14px;
        margin-left: 15px;
        border: none;
        border-radius: 3px;
    }

    .search-bar button {
        padding: 5px 10px;
        background-color: #007BFF;
        color: white;
        border: none;
        border-radius: 3px;
        cursor: pointer;
        margin-left: 5px;
    }

.imgHeader {    
    height: 40px;
    background-size: 100% 100%;
    width: 160px;
    background-image: url('https://d1he5kzkw0i203.cloudfront.net/Content/Movie365.png');
}


nav {
    display: flex;
}

    nav a {
        color: #fff;
        text-decoration: none;
        margin-right: 15px;
        padding: 0.5rem 1.3rem;
        border-radius: 3px;
        transition: background-color 0.3s ease;
        font-size: 0.85rem;
    }

        nav a.active {
            background-color: #007BFF;
        }


.auth-buttons button {
    font-size: 0.85rem;
    font-weight: bold;
    padding: 0.5rem 1.3rem;
    margin-left: 10px;
    border: none;
    border-radius: 0.4rem;
    cursor: pointer;

}

    .auth-buttons button:first-child {
        background-color: transparent;
        color: white;
        border: 2px solid #2484c5;
    }

    .auth-buttons button:last-child {
        background: rgb(67,109,185);
        background: linear-gradient(90deg, rgba(67,109,185,1) 0%, rgba(51,121,191,1) 50%, rgba(6,155,208,1) 100%);
        color: white;
    }

.hero {
    text-align: center;
    padding: 50px 20px;
    background: url('hero-bg.jpg');
}

    .hero h1 {
        font-size: 36px;
        margin: 20px 0;
    }

    .hero p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .hero button {
        padding: 10px 20px;
        border: none;
        background-color: #007BFF;
        color: white;
        font-size: 16px;
        cursor: pointer;
    }


.movie-card {
    flex: 0 0 auto;
    margin: 0 10px;
    width: 150px;
}

    .movie-card img {
        width: 100%;
        border-radius: 5px;
    }

    .movie-card p {
        text-align: center;
        margin-top: 5px;
    }
/*
.search-bar .icon {
    cursor: pointer !important;
}
*/

.search-bar {
    position: relative;
    display: flex;
    align-items: center;
    width: 250px;
}

.search-button {
    position: absolute;
    right: 10px; /* Adjust according to your needs */
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;

}

.search-bar input {
    /*padding-right: 30px;*/ /* Adjust padding so text doesn't overlap with button */

    width: 100%;
    padding: 10px 45px 10px 15px;
    border: 2px solid #555;
    border-radius: 25px;
    background-color: transparent;
    color: #fff;
    font-size: 0.85rem;
    outline: none;
}
    .search-bar input::placeholder {
        color: #888;
    }

.search-bar .icon {
    left: 0px;
    position: absolute;        
    transform: translateY(-50%);
    color: #555;
    font-size: 16px;
    pointer-events: none;    
}

/*

.search-bar {
    position: relative;
    display: inline-block;
    width: 200px;
}

    .search-bar input {
        width: 100%;
        padding: 10px 45px 10px 15px;  
        border: 2px solid #555;
        border-radius: 25px;
        background-color: transparent;
        color: #fff;
        font-size: 0.85rem;
        outline: none;
    }

        .search-bar input::placeholder {
            color: #888;
        }

    .search-bar .icon {
        position: absolute;
        left: 185px;  Keep the icon aligned to the right 
        top: 50%;
        transform: translateY(-50%);
        color: #555;
        font-size: 16px;
        pointer-events: none;  Prevent interaction with the icon 
    }

*/
.footer {
    background-color: #121212;
    color: #ffffff;
    padding: 50px 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    /*padding-left: 1rem;*/
}

    .footer-logo img {
        height: 40px;
        margin-right: 10px;
    }

.footer-left {
    padding-right: 60px !important;
    padding-bottom: 30px !important;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.footer-description {
    /*font-size: 0.9rem;
    line-height: 1.5;
*/
    line-height: 1.25rem;
    font-size: .875rem;
    color: #999;
}


.footer-links {
    padding-left: 3rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 20px;
    font-size: 0.9rem;
    display: inline-block; /* Ensures the links stay on the same line */
    margin: 0 5px; /* Adds spacing between the links */
}

        .footer-links a:hover {
            text-decoration: underline;
        }

.footer-genre {
    padding-right: 30px !important;
}
.sponsors img {
    height: 40px;
    width: 90px;
    margin-right: 15px;
}

.footer-categories,
.footer-columns {
    margin-top: 30px;
}

    .footer-categories h6,
    .footer-columns h6 {
        font-size: 0.9rem;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .footer-categories ul,
    .footer-columns ul {
        list-style: none;
        padding: 0;
    }

    .footer-categories li,
    .footer-columns li {
        font-size: 0.75rem;        
    }

        .footer-categories li a,
        .footer-columns li a {            
            color: #999;
            text-decoration: none;
        }

            .footer-categories li a:hover,
            .footer-columns li a:hover {
                color: #ffffff;
                /*text-decoration: underline;*/
            }

.footer-bottom {    
    font-size: 0.8rem;
    text-align: center;
}

    .footer-bottom a {
        margin: 0 5px;
        text-decoration: none;
        color: #ffffff;
        white-space: nowrap; /* Prevents wrapping */
        font-size: 0.8rem;
        padding-right: 1.5rem;
    }


        .footer-bottom a:hover {
            text-decoration: underline;
        }

/* Grid for 3 columns in each list */
.footer-categories ul,
.footer-columns ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Create 3 equal columns */
    gap: 5px;
}
.subscribe-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    text-align: center;
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://mypikachu.s3.ap-south-1.amazonaws.com/bgsubscribeemail.png') no-repeat center center;
    background-size: cover;
    color: #ffffff;
}

.icon-wrapper {
    font-size: 50px;
    color: #1c88e5;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px; /* Adjust width to make the border round */
    height: 80px; /* Adjust height to make the border round */
    border: 3px solid #1c88e5; /* Border color and thickness */
    border-radius: 50%; /* Makes the border round */
    background-color: black; /* Optional background */
}

    .icon-wrapper i {
        font-size: 40px; /* Icon size adjustment */
    }

.subscribe-header {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.email-input-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap; /* Allows items to wrap to the next line */
}

.email-input {
    width: 300px;
    padding: 10px;
    border: 2px solid #1c88e5; /* Adjust to match the background image */
    background-color: transparent; /* Transparent background */
    color: #ffffff; /* Text color for readability */
    border-radius: 1rem;
    outline: none;
    font-size: 0.8rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

    .email-input::placeholder {
        color: rgba(255, 255, 255, 0.7); /* Placeholder color */
    }

    .email-input:focus {
        background-color: rgba(255, 255, 255, 0.2); /* Slightly less transparent on focus */
        border-color: #1c88e5; /* Highlight border color */
    }

.subscribe-button {
    padding: 10px 20px;
    border: none;
    border-radius: 0.4rem;    
    background: rgb(67,109,185);
    background: linear-gradient(90deg, rgba(67,109,185,1) 0%, rgba(51,121,191,1) 50%, rgba(6,155,208,1) 100%);
    color: #fff;
    font-size: 0.8em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .subscribe-button:hover {
        background-color: #145fa2;
    }

.sponsors {
    padding-top: 2rem;
}

.transparent-line {
    border: none;
    height: 1px; /* Adjust the thickness of the line */
    background-color: #fff;    
}


@media (max-width: 1250px) {
    .subscribe-header {
        font-size: 1.5rem;
        margin-bottom: 0px;
        padding: 0.8rem;
    }

    .tv-dropdown {
        display: inline-block;
    }

    .movie-dropdown {
        display: inline-block;
    }

    .footer-logo {
        padding-left: 1rem;
    }

    .footer {
        padding: 20px 0;
    }

    .auth-buttons button {
        font-size: 0.6rem;
    }

    .imgHeader {
        height: 30px;
        width: 130px;
    }

    .nav-container,
    .search-bar,
    .auth-buttons {
        display: none;
    }

    #txtsearchBox {
        display: none;
    }

    #btnCloseSearch {
        display: none;
    }

    header {
        justify-content: space-between;
    }

    .auth-buttons {
        margin-left: auto; /* Push auth-buttons to the right */
        /*display: flex;*/
        align-items: center;
    }

        .auth-buttons button {
            padding: 0.5rem 0.7rem;
        }


    .header-logo {
        padding-right: 0rem;
        padding-left: 0rem;
    }

    .email-input,
    .subscribe-button {
        width: 80%; /* Extend width to take up most of the screen */
        min-width: 320px;
    }

    .email-input-wrapper {
        flex-direction: column; /* Stack the input and button vertically */
        gap: 15px; /* Add spacing between the input and button */
    }


    .footer-genre {
        padding-left: 2rem !important;
        padding-bottom: 1.5rem !important;
    }

    .footer-categories li,
    .footer-columns li {
        font-size: 0.8rem;
    }

    .footer-categories ul,
    .footer-columns ul {
        gap: 8px;
    }


    .footer-description {
        padding-left: 1.5rem;
    }

    .footer-right {
        display: flex;
        justify-content: center;
    }

    .sponsors {
        padding-top: 0rem;
        padding-bottom: 2rem;
    }

        .sponsors h6 {
            text-align: center;
        }

    .footer-left {
        padding-right: 30px !important;
        padding-bottom: 20px !important;
    }

    .footer-bottom p {
        flex-wrap: nowrap;
        justify-content: center;
    }

    .footer-bottom a {
        margin: 0 5px;
    }

    .subscribe-container {
        height: 400px;
    }

    .footer-text {
        display: block; /* Forces the entire text to act as a block */
        text-align: center; /* Ensures the text stays centered */
    }

    .footer-links {
        display: block; /* Moves links to a new line */
        margin-top: 10px; /* Adds spacing above the links */
        padding-left: 2rem;
    }

        .footer-links a {
            display: inline-block; /* Keeps links side-by-side */
            margin: 0 5px; /* Adjust spacing for smaller screens */
        }
}