/* Base Reset and Global Styles */
:root {
    --main-bg-color: #DEE3E4;
    --main-text-color: #253341;
    --nav-bg-color: #15202b;
    --nav-link-color: #eef1f4;
    --nav-link-hover-color: #fd5000;
    --footer-bg-color: #15202b;
    --footer-text-color: #eef1f4;
    --footer-link-hover-color: #fd5000;
    --btn-bg-color: #fd5000;
    --btn-hover-bg-color: #e44d00;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: var(--main-bg-color);
    color: var(--main-text-color);
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navbar Styles */
.navbar {
    background-color: var(--nav-bg-color);
    padding: 0;
    margin: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Added shadow for depth */
}

.navbar-brand img {
    height: 60px;
    width: auto;
    margin-right: 20px;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--nav-link-color);
    font-weight: 500;
    font-size: 16px;
    padding: 0.5rem 1rem;
    margin-right: 20px;
    text-decoration: none; /* Remove default underline */
    position: relative; /* Enable positioning for pseudo-element */
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--nav-link-hover-color);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--nav-link-hover-color);
}


.dropdown-menu {
    background-color: var(--nav-bg-color);
    border: none;
}

.dropdown-item {
    color: var(--nav-link-color);
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #1a2938;
    color: var(--nav-link-hover-color);
}


/* Footer Styles */
.footer {
    background-color: var(--footer-bg-color);
    color: var(--footer-text-color);
    padding: 2rem 0;
    text-align: center;
    margin-top: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.footer i {
    color: var(--footer-link-hover-color);
    margin-right: 5px;
}

.footer-links {
    text-align: center;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--footer-text-color);
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--footer-link-hover-color);
}

.footer-columns {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    margin: 10px;
    padding: 10px;
}

.footer-icon {
    font-size: 18px;
    color: var(--footer-link-hover-color);
    margin-right: 5px;
}

/* Custom Button Styles */
.btn-custom {
    background-color: var(--btn-bg-color);
    border-color: var(--btn-bg-color);
    color: white;
    font-weight: 500;
    padding: 8px 18px;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn-custom:hover {
    background-color: var(--btn-hover-bg-color);
    border-color: var(--btn-hover-bg-color);
    color: white;
}

.btn-custom:focus {
    outline: none;
    box-shadow: none;
}

/* Responsive Typography */
h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    h4 {
        font-size: 1.25rem;
    }

    h5 {
        font-size: 1rem;
    }

    h6 {
        font-size: 0.875rem;
    }

    .navbar-nav .nav-link {
        font-size: 14px;
        padding: 0.5rem 0.75rem;
        margin-right: 10px;
    }

    .footer-columns {
        display: block;
        text-align: center;
    }

    .footer-column {
        margin: 10px 0;
        padding: 10px;
    }

    .card-img-top {
        height: 150px;
    }
}

/* Responsive Images */
.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Responsive Tables */
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Responsive Cards */
.card {
    border: none;
    margin-bottom: 30px;
    border-radius: 15px;
    transition: box-shadow 0.3s ease-in-out;
}

.card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    height: 200px; /* Default height for larger screens */
    object-fit: cover; /* Ensure images cover the card area */
}

@media (max-width: 768px) {
    .card-img-top {
        height: 150px;
    }
}


/*-----------------------------------------------------------HOME CSS--------------------------------------------------*/
/* Hero Image Section */
.hero-image {
    width: 100%;
    height: 70vh;
    background-size: cover;
    background-position: center;
    padding: 6rem 1rem; /* Adjusted padding for a more balanced look */
    color: #ffffff;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text {
    background: rgba(0, 0, 0, 0.5); /* Slightly lighter overlay for consistency */
    padding: 2rem 2.5rem; /* Balanced padding for readability */
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-heading {
    font-size: 3rem; /* Reduced font size for consistency */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.hero-subheading {
    font-size: 2rem; /* Reduced font size for consistency */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem; /* Slightly adjusted font size for a more refined look */
    max-width: 600px; /* Adjusted max-width for a balanced appearance */
    margin: 0 auto; /* Centered text block */
}

/* Media Queries for Responsive Design */
@media (max-width: 992px) {
    .hero-image {
        padding: 4rem 1rem; /* Reduced padding on smaller screens */
    }

    .hero-heading {
        font-size: 2.5rem; /* Adjusted font size for smaller screens */
    }

    .hero-subheading {
        font-size: 1.8rem; /* Adjusted font size for smaller screens */
    }

    .hero-description {
        font-size: 1rem; /* Adjusted font size for smaller screens */
        max-width: 500px; /* Reduced max-width for smaller screens */
    }
}

@media (max-width: 768px) {
    .hero-image {
        padding: 3rem 1rem; /* Further reduced padding for very small screens */
    }

    .hero-heading {
        font-size: 2rem; /* Adjusted font size for very small screens */
    }

    .hero-subheading {
        font-size: 1.5rem; /* Adjusted font size for very small screens */
    }

    .hero-description {
        font-size: 0.875rem; /* Adjusted font size for very small screens */
        max-width: 100%; /* Full width for very small screens */
    }
}

/*-----------------------------------------------------------FEATURES SECTION--------------------------------------------------*/
        .features {
            padding: 1rem 0;
            background-color: #f8f9fa; /* Light background for the section */
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            margin: 1rem auto;

        }

      .section-header {
            text-align: left;
            font-size: 2rem;
            font-weight: bold;
            color: #15202b;
            border-bottom: 2px solid #ddd;
            padding-left: 0.5rem; /* Aligns the heading with the content */
}

        .features .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -0.5rem;
        }

        .features .feature-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin: 0 0.5rem 1rem;
            flex: 1 1 calc(33.33% - 1rem); /* Flex with spacing */
        }

        .features .feature-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
        }

        .features .feature-img img {
            width: 100%;
            height: 300px; /* Consistent height for uniformity */
            object-fit: cover; /* Cover the container */
            transition: transform 0.3s ease;
        }

        .features .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7); /* Darker overlay for better contrast */
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .features .feature-item:hover .overlay {
            opacity: 1;
        }

        .features .overlay h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
            font-weight: bold;
            color: #fff;
        }

        .features .overlay .btn-custom {
            background-color: #fd5000;
            color: #fff;
            padding: 1rem 2rem;
            text-decoration: none;
            border: none;
            transition: background-color 0.3s ease;
        }

        .features .overlay .btn-custom:hover {
            background-color: #e44d00;
        }

        .feature-item-link {
            display: block;
            text-decoration: none;
            color: inherit;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .features .feature-item {
                flex: 1 1 calc(50% - 1rem); /* Two items per row with spacing */
            }
        }

        @media (max-width: 768px) {
            .features .feature-item {
                flex: 1 1 calc(100% - 1rem); /* Full width on smaller screens */
                margin: 0.5rem 0; /* Adjust margins for better spacing */
            }
        }

/*-----------------------------------------------------------GAMES SECTION--------------------------------------------------*/
.games-covered {
            padding: 1rem 0;
            background-color: #f8f9fa; /* Light background for the section */
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            margin: 1rem auto;
}

.games-covered .row {
    display: flex; /* Use flexbox to manage spacing */
    flex-wrap: wrap; /* Allow wrapping */
    margin: 0 -0.5rem; /* Negative margin to counteract item margins */
}

.games-covered .game-item {
    display: flex;
    flex-direction: column; /* Stack image and text vertically */
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 0.5rem 1rem; /* Space between items and below */
    width: 100%; /* Ensure full width */
    max-width: 300px; /* Optional: set a max-width for larger screens */
}

.games-covered .game-img-container {
    width: 100%; /* Full width */
    height: 200px; /* Fixed height */
    overflow: hidden; /* Hide overflow to prevent cropping */
    display: flex; /* Flexbox to ensure image fits properly */
    align-items: center; /* Center the image vertically */
    justify-content: center; /* Center the image horizontally */
}

.games-covered .game-img {
    width: 300px;
    height: 200px;
}

.games-covered .game-text {
    background-color: #fff;
    padding: 0.6rem;
    text-align: center;
    border-radius: 12px; /* Rounded corners only at the bottom */
}

.games-covered .game-item h3 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    margin: 0; /* Remove default margin */
}

.games-covered .game-item a {
    text-decoration: none;
    color: inherit;
}

.games-covered .game-item:hover .game-img {
    transform: scale(1.05);
}

.games-covered .game-item:hover .game-text h3 {
    color: #fd5000;
}

/*-----------------------------------------------------------SPORTS NEWS SECTION--------------------------------------------------*/
        .sport-news {
            padding: 1rem 0;
            background-color: #f8f9fa; /* Light background for the section */
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            margin: 1rem auto;
        }

        .sport-news .row {
            display: flex; /* Use flexbox to manage spacing */
            flex-wrap: wrap; /* Allow wrapping */
            margin: 0 -0.5rem; /* Negative margin to counteract item margins */
        }

        .sport-news .sport-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 250px; /* Increased height */
            width: 100%; /* Ensure full width */
            max-width: 300px; /* Optional: set a max-width for larger screens */
            margin: 0 0.5rem 1rem; /* Space between items and below */
            display: flex; /* Ensures that the container has a flexible layout */
            align-items: center; /* Center aligns children vertically */
            justify-content: center; /* Center aligns children horizontally */
        }

        .sport-news .sport-item img {
            width: 100%;
            height: 100%; /* Ensure image takes full height of container */
            object-fit: cover; /* Maintain aspect ratio and cover container */
            transition: transform 0.3s ease;
        }

        .sport-news .sport-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
        }

        .sport-news .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .sport-news .sport-item:hover .overlay {
            opacity: 1;
        }

        .sport-news .overlay h3 {
            margin-bottom: 1rem;
            font-size: 1.5rem;
            font-weight: bold;
            color: #fff;
        }

        /* Make the entire card clickable */
        .sport-item-link {
            display: block;
            text-decoration: none;
            color: inherit;
        }

        .sport-item-link:hover .sport-item {
            transform: translateY(-8px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
        }

        /* Responsive Adjustments */
        @media (max-width: 1200px) {
            .sport-news .sport-item {
                height: 200px; /* Adjust height for smaller screens */
                max-width: 250px; /* Adjust max-width for smaller screens */
            }
        }

        @media (max-width: 768px) {
            .sport-news .sport-item {
                height: 180px; /* Adjust height for even smaller screens */
                max-width: 100%; /* Ensure full width on smaller screens */
            }
        }

/*-----------------------------------------------------------SPORTS BOOK SECTION--------------------------------------------------*/
.sports-book {
            padding: 1rem 0;
            background-color: #f8f9fa; /* Light background for the section */
            box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            margin: 1rem auto;
}

.sports-book-content {
    display: inline-block;
    white-space: nowrap;
    animation: sports-book 100s linear infinite;
}

.bookmakers {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex; /* Flexbox for horizontal alignment */
    text-align: center;
}

.bookmakers li {
    flex: 0 0 auto; /* Prevent items from shrinking */
    display: inline-block;
    margin: 0 2rem; /* Increased spacing between items */
}

.bookmakers li:hover {
    transform: scale(1.05); /* Slightly enlarge the item */
}

.bookmakers img {
    width: 100%;
    max-width: 10rem;
    height: auto;
    border-radius: 25px;
}
/* Keyframes for animation */
@keyframes sports-book {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/*-----------------------------------------------------------CALL TO ACTION SECTION--------------------------------------------------*/
.cta {
    background-color: #fd5000;
    color: #fff;
    padding: 7rem 1rem; /* Adjusted padding for mobile view */
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin: 1rem auto;
}

.cta .btn-custom {
    background-color: #fff;
    color: #fd5000;
    padding: 0.75rem 1.5rem; /* Adjusted padding for better appearance */
    border-radius: 0.25rem; /* Rounded corners */
    text-decoration: none;
}

.cta .btn-custom:hover {
    background-color: #D7D7D7;
}

/*-----------------------------------------------------------FAQ SECTION--------------------------------------------------*/
.faqs-2 {
    background-color: #f8f9fa; /* Light gray background */
    padding: 2rem 1rem; /* Adjusted padding for top and bottom */
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3); /* Shadow for depth */
    overflow: hidden;
    margin: 1rem auto;
}

.faqs-2 .accordion-wrapper {
    margin-top: 1.5rem; /* Space above the accordion */
}

.faqs-2 .accordion-thumb {
    display: flex;
    align-items: center;
    font-size: 1rem; /* Adjusted font size for better readability */
}

.faqs-2 .accordion-thumb span {
    margin-right: 0.5rem; /* Space between icon and text */
}

.faqs-2 .black-color {
    color: #343a40; /* Dark gray text color */
}

.faqs-2 .badge-danger-custom {
    background-color: #fd5000; /* Orange background */
    color: #fff; /* White text color */
    font-size: 0.875rem; /* Font size for badges */
    border-radius: 1rem; /* Rounded corners */
    padding: 0.25em 0.5em; /* Padding for better appearance */
}

.faqs-2 .card {
    border: none; /* Remove default border */
    margin-bottom: 1rem; /* Margin below cards */
    cursor: pointer; /* Pointer cursor on hover */
    transition: box-shadow 0.3s ease; /* Smooth shadow transition */
}

.faqs-2 .card:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Shadow effect on hover */
}

.faqs-2 .card-header {
    background-color: transparent !important; /* Remove background */
    border: none !important; /* Remove border */
    cursor: pointer; /* Pointer cursor on hover */
}

.faqs-2 .card-header:hover {
    background-color: transparent !important; /* Ensure background stays transparent */
}

.faqs-2 .card-body {
    font-size: 1rem; /* Adjusted font size for card content */
    line-height: 1.5; /* Improve readability with line height */
    color: #333; /* Slightly darker text for better contrast */
}

.faq-item {
    padding: 0.5rem 0;
    background-color: #f8f9fa; /* Light background for the section */
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3); /* Shadow for depth */
    overflow: hidden;
    margin: 1rem auto;
}

.faq-item .question {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    transition: background-color 0.3s;
}

.faq-item .question:hover {
    background-color: #f7f7f7; /* Light hover background */
}

.faq-item .question .arrow {
    font-size: 1.25rem; /* Arrow size */
    transition: transform 0.3s; /* Smooth transition for rotation */
}

.faq-item.active .question .arrow {
    transform: rotate(180deg); /* Rotate arrow when active */
}

.faq-item .question p, .faq-item .answer p {
    font-size: 1rem; /* Font size for question and answer text */
    margin: 0; /* Remove default margin */
}

.faq-item .answer {
    display: none; /* Hide answer by default */
    padding: 1rem;
    background-color: #f9f9f9; /* Light background for answer */
    border-left: 4px solid #fd5000; /* Border for emphasis */
    border-radius: 0.5rem;
    margin-top: -1px; /* Adjust to align with the border of the question */
}

.faq-item.active .answer {
    display: block; /* Show answer when active */
}

.accordion-thumb {
    display: flex;
    align-items: center;
}

.accordion-thumb .black-color {
    margin-left: 0.5rem; /* Space between icon and text */
    font-weight: bold; /* Bold text */
}






/* --------------------------------------------ARBITRAGE CSS----------------------------------------------------------- */

/* Hero Image Section */
.hero-image-report {
    display: flex; /* Flexbox layout */
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
    background-size: cover; /* Cover the background image */
    background-position: center; /* Center the background image */
    color: #fff; /* Text color */
    text-align: center; /* Center text alignment */
    position: relative; /* Position relative for overlay adjustments */
    height: 50vh; /* Height of the hero section */
    padding: 2rem 0; /* Padding for spacing */
}

.hero-image-report .report_hero-text {
    background: #13283dc7; /* Semi-transparent background */
    padding: 2rem; /* Padding around the text */
    border-radius: 8px; /* Rounded corners */
    width: 90%; /* Responsive width */
    max-width: 800px; /* Maximum width */
    margin: 0 auto; /* Center horizontally */
}

.hero-image-report h1 {
    font-size: 3rem; /* Font size for the heading */
    font-weight: bold; /* Bold text */
    margin-bottom: 1rem; /* Space below the heading */
    text-transform: uppercase; /* Uppercase text */
    letter-spacing: 2px; /* Spacing between letters */
}

.hero-image-report p {
    font-size: 1.2rem; /* Font size for paragraphs */
    margin-bottom: 1rem; /* Space below paragraphs */
}

.hero-image-report hr {
    width: 100px; /* Width of the horizontal rule */
    border-color: #fff; /* White color for the border */
    margin: 1rem auto; /* Center horizontally with margin */
}

.hero-image-report .form-control, .hero-image-report .btn-custom {
    border-radius: 30px; /* Rounded corners for inputs and buttons */
}

.hero-image-report .form-control {
    border-color: #e44d00; /* Orange border color */
}

.hero-image-report .custom-select {
    appearance: none; /* Remove default styling */
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"%3E%3Cpath fill="%23e44d00" d="M2 0L0 2h4zM2 5L0 3h4z"/%3E%3C/svg%3E'); /* Custom dropdown arrow */
    background-repeat: no-repeat; /* No repeat for the background image */
    background-position: right 0.75rem center; /* Position of the dropdown arrow */
    background-size: 8px 10px; /* Size of the dropdown arrow */
}

.hero-image-report .btn-custom {
    padding: 0.5rem; /* Padding inside buttons */
    font-size: 1rem; /* Font size for buttons */
    background-color: #fd5000; /* Orange background color */
    border-color: #fd5000; /* Orange border color */
    color: white; /* White text color */
    transition: background-color 0.3s, border-color 0.3s; /* Smooth transition for hover effects */
    outline: none; /* Remove default focus outline */
}

.hero-image-report .btn-custom:hover {
    background-color: #e44d00; /* Darker orange on hover */
    border-color: #e44d00; /* Darker orange border on hover */
}

.hero-image-report .btn-custom:focus {
    outline: none; /* Remove focus outline */
    box-shadow: none; /* Remove focus box shadow */
}

/* Card Styles */
.team-card {
    display: flex; /* Flexbox layout for the card */
    flex-direction: column; /* Stack children vertically */
    height: 100%; /* Fill the container height */
}

.card-body {
    display: flex; /* Flexbox layout for card body */
    flex-direction: row; /* Align children horizontally */
    justify-content: space-between; /* Space out the two teams */
    padding: 0; /* Remove padding */
}

.home-team, .away-team {
    flex: 1; /* Equal width for both teams */
    padding: 1rem; /* Padding for spacing */
}

.home-team {
    background-color: #e8fde5; /* Light green background for home team */
    border-right: 1px solid #ccc; /* Border between teams */
}

.away-team {
    background-color: #ffe6e6; /* Light red background for away team */
    border-right: none; /* Remove border on the last team */
}

.info-lines {
    display: flex; /* Flexbox layout */
    flex-direction: column; /* Stack information lines vertically */
    align-items: center; /* Center-align items horizontally */
}

.card {
    border: none; /* Remove border */
    border-radius: 15px; /* Rounded corners */
    overflow: hidden; /* Hide overflow */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
}

.card:hover {
    transform: translateY(-5px); /* Raise card on hover */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for hover effect */
}

.card-header {
    border-radius: 15px 15px 0 0; /* Rounded top corners */
    padding: 10px; /* Padding inside the header */
    background-color: #15202b; /* Dark background color */
}

.badge {
    font-size: 0.9rem; /* Font size for badges */
    padding: 0.5rem 0.75rem; /* Padding inside badges */
}

/* Alert message */
.alert {
    padding: 2rem; /* Padding inside the alert */
    margin: 1rem 0; /* Margin for spacing */
    background-color: #ffeeba; /* Light yellow background */
    border-radius: 8px; /* Rounded corners */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-body {
        flex-direction: column; /* Stack team sections vertically on small screens */
    }

    .home-team, .away-team {
        padding: 1rem; /* Adjust padding on smaller screens */
        border-right: none; /* Remove border on small screens */
    }
}

/* --------------------------------------------SPORT CSS----------------------------------------------------------- */

/* Hero Image Section */
.hero-image-sport {
    display: flex; /* Flexbox layout */
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
    background-size: cover; /* Cover the background image */
    background-position: center; /* Center the background image */
    color: #fd5000; /* Text color */
    text-align: center; /* Center text alignment */
    position: relative; /* Position relative for overlay adjustments */
    height: 50vh; /* Set the height of the hero section */
    padding: 10rem 0; /* Padding for vertical spacing */
    min-height: 400px; /* Minimum height to ensure visibility */
}

.hero-image-sport .hero-text {
    background: #13283dc7; /* Semi-transparent background */
    padding: 2rem; /* Padding around the text */
    border-radius: 8px; /* Rounded corners */
    display: inline-block; /* Inline block for centering */
    margin: 0 auto; /* Center horizontally */
}

.hero-image-sport h1 {
    font-size: 3rem; /* Font size for the heading */
    font-weight: bold; /* Bold text */
    margin-bottom: 1rem; /* Space below the heading */
    text-transform: uppercase; /* Uppercase text */
    letter-spacing: 2px; /* Spacing between letters */
    color: #fff; /* White text color */
}

/* Table Styles */
table {
    border-collapse: separate; /* Separate borders for table cells */
    border-spacing: 0 10px; /* Spacing between table rows */
    width: 100%; /* Full width table */
}

table thead tr {
    background-color: #15202b; /* Dark background for table header */
    color: white; /* White text color */
}

table th, table td {
    vertical-align: middle; /* Center content vertically */
    text-align: center; /* Center content horizontally */
    padding: 15px; /* Padding inside cells */
    border: none; /* Remove default border */
}

table tbody tr {
    background: white; /* White background for table rows */
    border-radius: 15px; /* Rounded corners for rows */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
}

table tbody tr:hover {
    transform: translateY(-5px); /* Raise row on hover */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for hover effect */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-image-sport {
        padding: 5rem 0; /* Adjust padding for smaller screens */
        height: auto; /* Allow height to adjust */
    }

    .hero-image-sport h1 {
        font-size: 2.5rem; /* Adjust font size for smaller screens */
    }
}

@media (max-width: 576px) {
    .hero-image-sport h1 {
        font-size: 1.8rem; /* Further adjust font size for very small screens */
        padding: 1rem; /* Adjust padding inside the hero-text */
    }

    table th, table td {
        padding: 10px; /* Adjust padding for table cells on smaller screens */
    }
}


/* --------------------------------------------Arbitrage Calculator CSS----------------------------------------------------------- */


.mb-4 {
    margin-bottom: 1.5rem; /* Margin bottom for spacing */
}

/* Card Styles */
.card {
    border-radius: 15px; /* Rounded corners */
    background-color: #f9f9f9; /* Light background color */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    margin-bottom: 1.5rem; /* Space below each card */
}

/* Results Section */
.results {
    background: #e9ecef; /* Light gray background */
    padding: 1.5rem; /* Padding inside the results section */
    border-radius: 10px; /* Rounded corners */
    margin-top: 2rem; /* Space above results section */
}
.result-item {
    display: flex; /* Flexbox layout */
    justify-content: space-between; /* Space between items */
    padding: 0.5rem 0; /* Vertical padding */
    border-bottom: 1px solid #dee2e6; /* Bottom border for separation */
}
.result-item:last-child {
    border-bottom: none; /* Remove bottom border from last item */
}
h3 {
    color: #15202b; /* Dark text color */
    margin-bottom: 1rem; /* Space below heading */
}

/* Responsive Design */
@media (max-width: 768px) {
    .card {
        padding: 1rem; /* Reduce padding inside the card */
    }

    .results {
        padding: 1rem; /* Reduce padding inside the results section */
    }

    .result-item {
        flex-direction: column; /* Stack items vertically on smaller screens */
        padding: 1rem 0; /* Adjust padding for vertical stacking */
    }

    .result-item:last-child {
        border-bottom: none; /* Ensure no bottom border on last item */
    }
}

@media (max-width: 576px) {
    .card {
        padding: 0.5rem; /* Further reduce padding inside the card */
    }

    .results {
        padding: 0.5rem; /* Further reduce padding inside the results section */
    }

    .result-item {
        padding: 0.5rem 0; /* Adjust padding for smaller screens */
    }

    h3 {
        font-size: 1.5rem; /* Adjust font size for better readability */
    }
}

/* --------------------------------------------Bookmaker CSS----------------------------------------------------------- */

/* Hero Image Section */
.hero-image-bookmaker {
    background-color: #15202b; /* Dark background color */
    color: white; /* White text color */
    text-align: center; /* Center align text */
    height: 50vh; /* Height of the hero section */
    display: flex; /* Flexbox layout */
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
    padding: 2rem; /* Padding around the content */
}
.hero-image-bookmaker .card-body {
    padding: 3.3rem; /* Padding inside the card body */
}
.hero-image-bookmaker .img-fluid {
    max-width: 60%; /* Limit image width */
    height: auto; /* Maintain aspect ratio */
}
.hero-image-bookmaker .badge {
    font-size: 0.9rem; /* Font size for badges */
    padding: 0.5rem 0.75rem; /* Padding inside badges */
    margin: 0.2rem; /* Margin around badges */
}

/* Table Styles */
table {
    border-collapse: separate;
    border-spacing: 0 10px; /* Space between rows */
    width: 100%; /* Ensure table spans full width */
}
table thead tr {
    background-color: #15202b; /* Dark background for table header */
    color: white; /* White text color */
    border-radius: 15px 15px 0 0; /* Rounded corners for header */
}
table th, table td {
    vertical-align: middle; /* Align content vertically */
    text-align: center; /* Center align text */
    padding: 15px; /* Padding for table cells */
    border: none; /* Remove default border */
}
table tbody tr {
    background: white; /* White background for table rows */
    border-radius: 15px; /* Rounded corners for table rows */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions for hover effects */
}
table tbody tr:hover {
    transform: translateY(-5px); /* Raise row on hover */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for hover effect */
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-image-bookmaker {
        height: 40vh; /* Adjust height for smaller screens */
        padding: 1.5rem; /* Reduce padding */
    }

    .hero-image-bookmaker .img-fluid {
        max-width: 80%; /* Adjust image width */
    }

    .hero-image-bookmaker .card-body {
        padding: 2rem; /* Adjust padding inside the card */
    }

    table th, table td {
        padding: 10px; /* Adjust padding for table cells */
    }
}

@media (max-width: 576px) {
    .hero-image-bookmaker {
        height: 30vh; /* Further reduce height for very small screens */
        padding: 1rem; /* Further reduce padding */
    }

    .hero-image-bookmaker .img-fluid {
        max-width: 100%; /* Ensure image fits on very small screens */
    }

    .hero-image-bookmaker .card-body {
        padding: 1rem; /* Further adjust padding inside the card */
    }

    table th, table td {
        padding: 8px; /* Further adjust padding for table cells */
    }
}

/* --------------------------------------------Event CSS----------------------------------------------------------- */

/* No Data Message */
.no-data-message {
    color: red; /* Adjust to the desired color */
    font-weight: bold; /* Ensure text is bold */
    text-align: center; /* Center align the no data message */
    margin: 20px 0; /* Space around the no data message */
}

/* Hero Image Section for Events */
.hero-image-events {
    background-size: cover;
    background-position: center;
    padding: 10rem 0; /* Adjust padding for vertical spacing */
    color: white;
    text-align: center;
    position: relative;
    margin-top: 12px; /* Space above the hero section */
    height: 40vh; /* Minimum height of the hero section */
}
.hero-image-events .hero-text {
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 2rem; /* Vertical and horizontal padding */
    border-radius: 8px; /* Rounded corners */
    display: inline-block;
    max-width: 800px; /* Maximum width for the text container */
    margin: 0 auto; /* Center align horizontally */
}
.hero-image-events h1 {
    font-size: 2.5rem; /* Adjust font size as needed */
    font-weight: bold; /* Ensure text is bold */
    margin-bottom: 1rem; /* Space below the heading */
    text-transform: uppercase; /* Convert text to uppercase */
    letter-spacing: 1.5px; /* Add letter spacing for emphasis */
    color: #ffffff; /* Text color */
}

/* Events Data Section */
.events-data-section {
    background-color: #f8f9fa; /* Light gray background for the section */
    padding: 1.5rem; /* Padding for spacing within the section */
}

/* Table Styles */
table {
    border-collapse: separate;
    border-spacing: 0 10px; /* Space between rows */
    width: 100%; /* Ensure table spans full width */
}
table thead tr {
    background-color: #15202b; /* Dark background for table header */
    color: white; /* White text color */
}
table th, table td {
    vertical-align: middle;
    text-align: center;
    padding: 15px; /* Padding for table cells */
    border: none; /* Remove default border */
}
table tbody tr {
    background: white; /* White background for table rows */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions for hover effects */
    border-radius: 15px; /* Rounded corners for table rows */
}
table tbody tr:hover {
    transform: translateY(-5px); /* Raise row on hover */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for hover effect */
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-image-events {
        padding: 6rem 0; /* Reduce padding for smaller screens */
        height: 30vh; /* Adjust height for smaller screens */
    }

    .hero-image-events .hero-text {
        padding: 1.5rem; /* Reduce padding in the hero text container */
        max-width: 90%; /* Ensure it fits well on smaller screens */
    }

    .hero-image-events h1 {
        font-size: 2rem; /* Adjust font size for headings */
    }

    .events-data-section {
        padding: 1rem; /* Adjust padding around the section content */
    }

    table th, table td {
        padding: 10px; /* Adjust padding for table cells */
    }
}

@media (max-width: 576px) {
    .hero-image-events {
        padding: 4rem 0; /* Further reduce padding for very small screens */
        height: 25vh; /* Further adjust height */
    }

    .hero-image-events .hero-text {
        padding: 1rem; /* Further reduce padding in the hero text container */
        max-width: 100%; /* Ensure it fits full width on very small screens */
    }

    .hero-image-events h1 {
        font-size: 1.5rem; /* Further adjust font size for headings */
    }

    .events-data-section {
        padding: 0.5rem; /* Further adjust padding around the section content */
    }

    table th, table td {
        padding: 8px; /* Further adjust padding for table cells */
    }
}

/* --------------------------------------------Odds CSS----------------------------------------------------------- */

/* No Data Message */
.no-data-message {
    color: red; /* Change to desired color */
    font-weight: bold; /* Ensure text is bold */
    text-align: center; /* Center align the no data message */
    margin: 20px 0; /* Space around the no data message */
}

/* Hero Image Section for Odds */
.hero-image-odds {
    background-size: cover;
    background-position: center;
    padding: 10rem 0; /* Adjust padding for vertical spacing */
    color: white;
    text-align: center;
    position: relative;
    margin-top: 12px; /* Space above the hero section */
    height: 50vh; /* Minimum height of the hero section */
}
.hero-image-odds .hero-text {
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 2rem; /* Vertical and horizontal padding */
    border-radius: 8px; /* Rounded corners */
    display: inline-block;
    max-width: 800px; /* Maximum width for the text container */
    margin: 0 auto; /* Center align horizontally */
}
.hero-image-odds h1 {
    font-size: 3rem; /* Adjust font size as needed */
    font-weight: bold; /* Ensure text is bold */
    margin-bottom: 1rem; /* Space below the heading */
    text-transform: uppercase; /* Convert text to uppercase */
    letter-spacing: 2px; /* Add letter spacing for emphasis */
    color: #ffffff; /* Text color */
}

/* Odds Data Section */
.odds-data-section {
    background-color: #f8f9fa; /* Light gray background for the section */
}

/* Table Styles */
table {
    border-collapse: separate;
    border-spacing: 0 10px; /* Space between rows */
    width: 100%; /* Ensure table spans full width */
}
table thead tr {
    background-color: #15202b; /* Dark background for table header */
    color: white; /* White text color */
}
table th, table td {
    vertical-align: middle;
    text-align: center;
    padding: 15px; /* Padding for table cells */
    border: none; /* Remove default border */
}
table tbody tr {
    background: white; /* White background for table rows */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions for hover effects */
    border-radius: 15px; /* Rounded corners for table rows */
}
table tbody tr:hover {
    transform: translateY(-5px); /* Raise row on hover */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for hover effect */
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-image-odds {
        padding: 6rem 0; /* Reduce padding for smaller screens */
        height: 30vh; /* Adjust height for smaller screens */
    }

    .hero-image-odds .hero-text {
        padding: 1.5rem; /* Reduce padding in the hero text container */
        max-width: 90%; /* Ensure it fits well on smaller screens */
    }

    .hero-image-odds h1 {
        font-size: 2rem; /* Adjust font size for headings */
    }

    .odds-data-section {
        padding: 15px; /* Adjust padding around the section content */
    }

    table th, table td {
        padding: 10px; /* Adjust padding for table cells */
    }
}

@media (max-width: 576px) {
    .hero-image-odds {
        padding: 4rem 0; /* Further reduce padding for very small screens */
        height: 25vh; /* Further adjust height */
    }

    .hero-image-odds .hero-text {
        padding: 1rem; /* Further reduce padding in the hero text container */
        max-width: 100%; /* Ensure it fits full width on very small screens */
    }

    .hero-image-odds h1 {
        font-size: 1.5rem; /* Further adjust font size for headings */
    }

    .odds-data-section {
        padding: 10px; /* Further adjust padding around the section content */
    }

    table th, table td {
        padding: 8px; /* Further adjust padding for table cells */
    }
}

/* ------------------------------------------------------SCORE CSS -------------------------------------------------- */

/* No Data Message */
.no-data-message {
    color: red; /* Change to desired color */
    font-weight: bold; /* Ensure text is bold */
    text-align: center; /* Center align the no data message */
    margin: 20px 0; /* Space around the no data message */
}

/* Hero Image Section for Scores */
.hero-image-scores {
    background-size: cover;
    background-position: center;
    padding: 10rem 0; /* Adjust padding for vertical spacing */
    color: white;
    text-align: center;
    position: relative;
    margin-top: 12px; /* Space above the hero section */
    height: 40vh; /* Minimum height of the hero section */
}
.hero-image-scores .hero-text {
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    padding: 5rem; /* Vertical and horizontal padding */
    border-radius: 8px; /* Rounded corners */
    display: inline-block;
    max-width: 800px; /* Maximum width for the text container */
    margin: 0 auto; /* Center align horizontally */
}
.hero-image-scores h1 {
    font-size: 3rem; /* Adjust font size as needed */
    font-weight: bold; /* Ensure text is bold */
    margin-bottom: 1rem; /* Space below the heading */
    text-transform: uppercase; /* Convert text to uppercase */
    letter-spacing: 2px; /* Add letter spacing for emphasis */
    color: #ffffff; /* Text color */
}

/* Scores Data Section */
.scores-data-section {
    background-color: #f8f9fa; /* Light gray background for the section */
}

/* Table Styles */
table {
    border-collapse: separate;
    border-spacing: 0 10px; /* Space between rows */
    width: 100%; /* Ensure table spans full width */
}
table thead tr {
    background-color: #15202b; /* Dark background for table header */
    color: white; /* White text color */
}
table th, table td {
    vertical-align: middle;
    text-align: center;
    padding: 15px; /* Padding for table cells */
    border: none; /* Remove default border */
}
table tbody tr {
    background: white; /* White background for table rows */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transitions for hover effects */
    border-radius: 15px; /* Rounded corners for table rows */
}
table tbody tr:hover {
    transform: translateY(-5px); /* Raise row on hover */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for hover effect */
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-image-scores {
        padding: 6rem 0; /* Reduce padding for smaller screens */
        height: 30vh; /* Adjust height for smaller screens */
    }

    .hero-image-scores .hero-text {
        padding: 3rem; /* Reduce padding in the hero text container */
        max-width: 90%; /* Ensure it fits well on smaller screens */
    }

    .hero-image-scores h1 {
        font-size: 2rem; /* Adjust font size for headings */
    }

    .scores-data-section {
        padding: 15px; /* Adjust padding around the section content */
    }

    table th, table td {
        padding: 10px; /* Adjust padding for table cells */
    }
}

@media (max-width: 576px) {
    .hero-image-scores {
        padding: 4rem 0; /* Further reduce padding for very small screens */
        height: 25vh; /* Further adjust height */
    }

    .hero-image-scores .hero-text {
        padding: 2rem; /* Further reduce padding in the hero text container */
        max-width: 100%; /* Ensure it fits full width on very small screens */
    }

    .hero-image-scores h1 {
        font-size: 1.5rem; /* Further adjust font size for headings */
    }

    .scores-data-section {
        padding: 10px; /* Further adjust padding around the section content */
    }

    table th, table td {
        padding: 8px; /* Further adjust padding for table cells */
    }
}

/* ------------------------------------------------------BLOG CSS -------------------------------------------------- */

/* Blog Section */
.blog-section {
    background-color: #fff; /* Background color for the blog section */
    color: #333; /* Default text color */
}

/* Blog Post */
.blog-post {
    background-color: #f9f9f9; /* Background color for blog posts */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    overflow: hidden; /* Ensure content stays within rounded corners */
    cursor: pointer; /* Indicate clickable */
    transition: box-shadow 0.3s ease; /* Smooth transition for hover effect */
    margin-bottom: 20px; /* Space below each blog post */
}
.blog-post:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

/* Blog Image */
.blog-img img {
    width: 100%; /* Full width of the container */
    height: auto; /* Maintain aspect ratio */
}

/* Blog Content */
.blog-content {
    padding: 20px; /* Padding for content */
}
.blog-content h4 {
    color: #ff6b00; /* Color for subheadings */
    margin-bottom: 10px; /* Space below subheadings */
    font-size: 1.25rem; /* Adjust font size for subheadings */
}
.blog-content p {
    color: #555; /* Text color for paragraphs */
    margin-bottom: 20px; /* Space below paragraphs */
}

/* Collapse Content */
.collapse.show {
    display: block; /* Ensure content is visible */
    padding: 20px; /* Padding for visible content */
}

/* Blog Details */
.blog-details {
    border-top: 1px solid #ddd; /* Border on top of details section */
    padding-top: 20px; /* Space above details */
}
.blog-details p {
    color: #555; /* Text color for details */
    margin-bottom: 15px; /* Space below details paragraphs */
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-section {
        padding: 15px; /* Adjust padding for smaller screens */
    }

    .section-header h2 {
        font-size: 1.25rem; /* Adjust font size for section headers */
    }

    .blog-post {
        margin-bottom: 15px; /* Reduced space below each blog post */
    }

    .blog-content h4 {
        font-size: 1.125rem; /* Adjust font size for subheadings */
    }

    .blog-content p {
        font-size: 14px; /* Adjust font size for paragraphs */
    }
}

@media (max-width: 576px) {
    .blog-section {
        padding: 10px; /* Further reduce padding for very small screens */
    }

    .section-header h2 {
        font-size: 1rem; /* Further adjust font size for section headers */
    }

    .blog-post {
        margin-bottom: 10px; /* Further reduced space below each blog post */
    }

    .blog-content h4 {
        font-size: 1rem; /* Further adjust font size for subheadings */
    }

    .blog-content p {
        font-size: 13px; /* Further adjust font size for paragraphs */
    }
}

/* ------------------------------------------------------ERROR CSS -------------------------------------------------- */

/* Custom styles for the alert */
.alert-info {
    background-color: #f8d7da; /* Light red background */
    color: #721c24; /* Dark red text */
    border-color: #f5c6cb; /* Lighter red border */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    padding: 30px; /* Increased padding for spacing */
    border-radius: 8px; /* Rounded corners for better appearance */
    margin-bottom: 20px; /* Space below the alert */
}

/* Heading within the alert */
.alert-info h4 {
    color: #721c24; /* Dark red for the heading */
    font-weight: bold; /* Bold text for emphasis */
    margin-bottom: 10px; /* Space below the heading */
}

/* Paragraph text within the alert */
.alert-info p {
    color: #721c24; /* Dark red for the paragraph text */
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .alert-info {
        padding: 20px; /* Adjust padding for smaller screens */
    }

    .alert-info h4 {
        font-size: 1.25rem; /* Adjust font size for heading */
    }

    .alert-info p {
        font-size: 14px; /* Adjust font size for paragraph text */
    }
}

@media (max-width: 576px) {
    .alert-info {
        padding: 15px; /* Further reduced padding for very small screens */
    }

    .alert-info h4 {
        font-size: 1.125rem; /* Further adjust font size for heading */
    }

    .alert-info p {
        font-size: 13px; /* Further adjust font size for paragraph text */
    }
}

/* Responsive Button Styles */
@media (max-width: 768px) {
    .btn-custom {
        padding: 8px 18px; /* Adjust padding for smaller screens */
        font-size: 14px; /* Adjust font size for better readability */
    }
}

/* ------------------------------------------------------LOGIN CSS -------------------------------------------------- */
/* Custom styles for the login form */
.login-form {
    background-color: #ffffff;
    color: #333333;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Heading inside the form */
.login-form h4 {
    color: #333333;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Label styles inside form groups */
.login-form .form-group label {
    color: #333333;
    font-weight: 500;
}

/* Input styles inside form groups */
.login-form .form-group input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

/* Focus styles for input fields */
.login-form .form-group input:focus {
    border-color: #fd5000;
    outline: none;
}

/* Text styling for form text elements */
.login-form .form-group .form-text {
    color: #555555;
    opacity: 0.7;
}

/* Styles for registration link */
.login-form .register-link {
    color: #fd5000;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Hover effect for registration link */
.login-form .register-link:hover {
    color: #e44d00;
}

/* Animation for form appearance */
.login-form {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design for smaller screens */
@media (max-width: 1200px) {
    .login-form {
        padding: 25px;
    }
}

@media (max-width: 992px) {
    .login-form {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .login-form {
        padding: 15px;
    }

    .login-form h4 {
        font-size: 1.5rem;
    }

    .login-form .form-group input {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .login-form {
        padding: 10px;
        box-shadow: none;
    }

    .login-form h4 {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }

    .login-form .form-group input {
        font-size: 13px;
        padding: 8px;
    }

    .login-form .form-group .form-text {
        font-size: 12px;
    }

    .login-form .register-link {
        font-size: 14px;
    }
}
/* ------------------------------------------------------SIGNUP CSS -------------------------------------------------- */
/* Custom styles for the register form */
.register-form {
    background-color: #ffffff;
    color: #333333;
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Heading inside the form */
.register-form h4 {
    color: #333333;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Label styles inside form groups */
.register-form .form-group label {
    color: #333333;
    font-weight: 500;
}

/* Input styles inside form groups */
.register-form .form-group input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

/* Focus styles for input fields */
.register-form .form-group input:focus {
    border-color: #fd5000;
    outline: none;
}

/* Styles for login link */
.register-form .login-link {
    color: #fd5000;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Hover effect for login link */
.register-form .login-link:hover {
    color: #e44d00;
}

/* Animation for form appearance */
.register-form {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design for smaller screens */
@media (max-width: 1200px) {
    .register-form {
        padding: 25px;
    }
}

@media (max-width: 992px) {
    .register-form {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .register-form {
        padding: 15px;
    }

    .register-form h4 {
        font-size: 1.5rem;
    }

    .register-form .form-group input {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .register-form {
        padding: 10px;
        box-shadow: none;
    }

    .register-form h4 {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }

    .register-form .form-group input {
        font-size: 13px;
        padding: 8px;
    }

    .register-form .form-group .form-text {
        font-size: 12px;
    }

    .register-form .login-link {
        font-size: 14px;
    }
}
