/* General body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #1c2541;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

/* Header styling */
header {
    background-color: #2c3e50; /* Orange background */
    padding: 10px 20px; /* Adjusted padding for header */
    text-align: center; /* Center the content of the header */
    color: white;
    position: fixed; /* Keeps header fixed at the top */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000; /* Ensures it stays on top */
}

/* Center the logo */
header .logo {
    display: inline-block; /* Ensure it's treated as inline element */
    margin: 0 auto; /* Centers the logo */
}

/* Logo styling */
header .logo img {
    max-width: 150px; /* Logo size adjustment */
    height: auto;
    display: block; /* Make the image block-level to center it */
    margin: 0 auto; /* Automatically centers the image */
}

/* Download button styling */
.download-button {
    background-color: #1c2541; /* Set background color to #1c2541 */
    color: white;
    padding: 12px 25px; /* Adjusted button size */
    font-size: 14px; /* Font size */
    border: 2px solid orange; /* Added orange border */
    border-radius: 0; /* Sharp corners */
    cursor: pointer;
    text-decoration: none;
    position: fixed; /* Fixed position */
    top: 10px; /* Distance from the top */
    right: 10px; /* Distance from the right */
    z-index: 1000; /* Ensures it stays on top */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.download-button:hover {
    background-color: #1c2541; /* Keep background the same when hovered */
    border-color: orangered; /* Change border color on hover */
}

/* Arrow styling */
.download-button .arrow {
    margin-left: 5px;
    font-size: 20px; /* Increased font size for a thicker arrow */
    font-weight: bold; /* Thicker arrow */
}

/* Image styling */
img {
    display: block;
    margin: 80px auto 20px; /* Centers the image on the page and adds top margin to avoid overlap with header */
    max-width: 90%; /* Ensures it fits within the viewport */
    height: auto;
}

/* Banner styling */
.download-banner {
    background-color: #25d366;
    color: white;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 1000;
}

/* Ensure content is visible under the fixed header */
main {
    padding-top: 120px; /* Adds space below the fixed header */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .download-button {
        padding: 10px 15px;
        font-size: 12px;
        top: 15px; /* Adjusted for smaller screens */
        right: 15px;
    }

    header h1 {
        font-size: 1.5rem;
    }

    header p {
        font-size: 0.9rem;
    }

    .download-banner {
        font-size: 14px;
        padding: 12px;
    }
}
/* Blinking border animation */
@keyframes blink-border {
    0% { border-color: orange; }     /* Default border color */
    50% { border-color: white; }     /* Blink to white */
    100% { border-color: orange; }   /* Back to default */
}

/* Download button styling */
.download-button {
    background-color: #1c2541; /* Set background color to #1c2541 */
    color: white;
    padding: 12px 25px; /* Adjusted button size */
    font-size: 14px; /* Font size */
    border: 2px solid orange; /* Initial border color */
    border-radius: 0; /* Sharp corners */
    cursor: pointer;
    text-decoration: none;
    position: fixed; /* Fixed position */
    top: 10px; /* Distance from the top */
    right: 10px; /* Distance from the right */
    z-index: 1000; /* Ensures it stays on top */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    /* Apply the blinking border animation */
    animation: blink-border 1s infinite; /* 1-second cycle, repeats infinitely */
}

.download-button:hover {
    background-color: #1c2541; /* Keep background the same when hovered */
    border-color: orangered; /* Change border color on hover */
}
/* Download button styling */
.download-button {
    background-color: #1c2541; /* Set background color to #1c2541 */
    color: white;
    padding: 8px 18px; /* Smaller button size */
    font-size: 12px; /* Smaller font size */
    border: 2px solid orange; /* Initial border color */
    border-radius: 8px; /* Sharp corners */
    cursor: pointer;
    text-decoration: none;
    position: fixed; /* Fixed position */
    top: 50px; /* Moves the button further down */
    right: 10px; /* Distance from the right */
    z-index: 1000; /* Ensures it stays on top */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    /* Apply the blinking border animation */
    animation: blink-border 1s infinite; /* 1-second cycle, repeats infinitely */
}

.download-button:hover {
    background-color: #1c2541; /* Keep background the same when hovered */
    border-color: orangered; /* Change border color on hover */
}

/* Blinking border animation */
@keyframes blink-border {
    0% { border-color: orange; }     /* Default border color */
    50% { border-color: orangered; }     /* Blink to white */
    100% { border-color: orange; }   /* Back to default */
}
/* Header styling */
header {
    background-color: #2c3e50; /* Orange background */
    padding: 10px 20px; /* Padding for header */
    text-align: center; /* Center content of header */
    color: white;
    position: fixed; /* Keeps header fixed at the top */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000; /* Ensures it stays on top */
}

/* Adjust logo's position slightly more to the left and down */
header .logo {
    position: relative;
    left: -20px; /* Move logo a little more to the left */
    top: 8px; /* Move logo slightly down */
    display: inline-block;
}

/* Logo styling */
header .logo img {
    max-width: 150px; /* Logo size adjustment */
    height: auto;
    display: block; /* Make the image block-level to center it */
    margin: 0 auto; /* Automatically centers the image */
}


.betting-slip {
    margin: 20px;
}

.match {
    background-color: #1c2541;
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 8px;
}

.details p {
    margin: 5px 0;
    color: white;
}

.status {
    font-size: 1rem;
    font-weight: bold;
    color: #28a745; /* Green color for 'Won' */
    display: flex;
    align-items: center; /* Centers the tick with the text */
    margin-top: 10px;
}

.status-tick {
    color: #28a745; /* Green color for the tick */
    font-size: 1.2rem; /* Size of the tick */
    margin-right: 8px; /* Space between the tick and text */
}

.footer {
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
    color: orange;
}


.status {
    font-weight: bold;
    color: #27ae60;
    font-size: 0.9rem;
}

.status.lost {
    color: #e74c3c;
}

.footer {
    background: #ecf0f1;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    color: orange;
}
.center-underline {
    text-align: center;
    text-decoration: underline;
    font-size: 1.2rem; /* Optional: Adjust font size */
    color: white; /* Optional: Set text color */
    margin: 20px 0; /* Optional: Add vertical spacing */
}
.center-text {
    text-align: center; /* Center horizontally */
    margin-top: 20px; /* Adjust vertical spacing */
    font-size: 1.5rem; /* Adjust font size */
    color: white; /* Optional: Set text color */
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #2c3e50;
}

.promo-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #1c2541;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.promo-text {
    font-size: 1.0rem;
    line-height: 1.6;
    color: white;
    margin: 0;
}

.promo-text strong {
    color: white;
    font-weight: bold;
}
.center-text {
    text-align: center; /* Center horizontally */
    margin-top: 20px; /* Adjust vertical spacing */
    font-size: 2rem; /* Optional: Adjust font size */
    color: white; /* Optional: Set text color */
}
hr {
    width: 100%;  /* Full width */
    border: 0;    /* Removes default border */
    border-top: 2px solid white; /* Creates a 2px solid line */
    margin: 20px 0; /* Optional: Adds space above and below the line */
}
/* Center the button horizontally */
.center-button-container {
    display: flex;
    justify-content: center; /* Centers the button horizontally */
    width: 100%; /* Ensures it takes up the full width of the container */
}

/* Button styling */
.unique-download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #ff6f61; /* Unique coral color */
    color: white; /* White text */
    padding: 15px 25px; /* Larger padding for emphasis */
    font-size: 1.2rem; /* Slightly larger text */
    font-weight: 600; /* Semi-bold text for emphasis */
    text-decoration: none; /* Remove underline */
    border-radius: 50px; /* Rounded pill shape */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Soft shadow for 3D effect */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    border: 2px solid #ff6f61; /* Border with the same color as the button */
}

.unique-download-button:hover {
    background-color: #ff5a47; /* Darker shade on hover */
    transform: scale(1.05); /* Slightly grow the button on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}

.unique-download-button .arrow {
    margin-left: 12px; /* Space between text and arrow */
    font-size: 1.8rem; /* Larger arrow */
    transition: transform 0.3s ease;
}

.unique-download-button:hover .arrow {
    transform: translateX(5px); /* Move the arrow slightly when hovered */
}
.center-text {
    font-size: 1.5rem; /* Adjusted for prominence */
    font-weight: bold;
    text-align: center;
    margin: 0;
    color: white; /* Dark text color for visibility */
}

.motto-text {
    font-size: 1.2rem; /* Slightly smaller than the main heading */
    color: whitesmoke; /* Blue for a calm and trustworthy look */
    font-style: italic; /* Stylish and engaging */
    margin-top: 10px; /* Space between heading and motto */
    text-align: center; /* Ensures motto is centered */
    font-weight: 400; /* Regular weight for the motto */
}


.status {
    font-size: 1.2rem;
    font-weight: bold;
    color: #28a745; /* Green color for 'Won' */
    display: flex;
    align-items: center;
    margin-top: 10px;
    font-family: 'Arial', sans-serif;
}

.status-tick {
    color: white; /* White color for tick */
    font-size: 1.2rem; /* Larger size for better visibility */
    margin-right: 8px; /* Spacing between the tick and text */
    padding: 4px;
    background-color: #28a745; /* Green circle background */
    border-radius: 50%; /* Circle shape */
    width: 15px; /* Width of the circle */
    height: 15px; /* Height of the circle */
    display: flex;
    justify-content: center; /* Center the tick inside the circle */
    align-items: center; /* Center the tick vertically */
}
.match {
    background-color: #1c2541;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    display: flex; /* Use flexbox to align items */
    justify-content: space-between; /* Space out items to the left and right */
    align-items: center; /* Vertically align items */
}

.details {
    flex-grow: 1; /* Allows the details section to take up available space */
}

.status {
    font-size: 1.2rem;
    font-weight: bold;
    color: #28a745; /* Green color for 'Won' */
    display: flex;
    align-items: center;
    font-family: 'Arial', sans-serif;
    margin-left: 10px; /* Optional: Adjust margin if needed */
}

.match {
    background-color: #1c2541;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    display: flex; /* Use flexbox to align items */
    justify-content: space-between; /* Space out items to the left and right */
    align-items: center; /* Vertically align items */
}

.details {
    flex-grow: 1; /* Allows the details section to take up available space */
}

.details p {
    font-size: 1rem;
    color: white; /* Lighter color for teams */
}

.details p:last-child {
    color: #777; /* Darker color for the date */
}

.status {
    font-size: 1.2rem;
    font-weight: bold;
    color: #28a745; /* Green color for 'Won' */
    display: flex;
    align-items: center;
    font-family: 'Arial', sans-serif;
    margin-left: 10px; /* Optional: Adjust margin if needed */
}
.apk-warning-section {
    background-color: #2c3e50;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: whitesmoke;
    margin-bottom: 10px;
}

.info-list {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 1rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 15px;
}

.convincing-message {
    font-size: 1.2rem;
    font-weight: bold;
    color: #28a745;
    text-align: center;
    margin-top: 20px;
    font-family: 'Arial', sans-serif;
}
.jackpot-predictions {
    background-color: #2c3e50;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: orange;
    margin-bottom: 10px;
}

.info-list {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 1rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 15px;
}

.convincing-message {
    font-size: 1.2rem;
    font-weight: bold;
    color: #28a745;
    text-align: center;
    margin-top: 20px;
    font-family: 'Arial', sans-serif;
}
.betting-success {
    background-color: #2c3e50;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: orange;
    margin-bottom: 10px;
}

.info-list {
    list-style-type: disc;
    padding-left: 20px;
    font-size: 1rem;
    color: white;
    line-height: 1.6;
    margin-bottom: 15px;
}

.convincing-message {
    font-size: 1.2rem;
    font-weight: bold;
    color: #28a745;
    text-align: center;
    margin-top: 20px;
    font-family: 'Arial', sans-serif;
}
.main-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: #28a745;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
}

.center-text {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: orange;
    margin-bottom: 10px;
}

.motto-text {
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    color: #28a745;
    margin-top: 5px;
}
/* Apply background color to sections */
 .betting-slip {
    background-color: #1c2541; /* Light gray color */
}
.testimonials {
    background-color: #1c2541; /* Matches other sections */
    padding: 20px;
    border-radius: 8px;
    color: #fff;
    margin-bottom: 20px;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: center;
}

.testimonial {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 10px;
    background-color: #162035;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.avatar {
    width: 50px;
    height: 50px;
    background-color: #28a745; /* Green background */
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    text-transform: uppercase;
}

.comment-details h3 {
    margin: 0;
    font-size: 1rem;
    color: #f9f9f9;
}

.comment-date {
    font-size: 0.8rem;
    color: #bbb;
    margin-bottom: 8px;
    display: block;
}

.comment-details p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #ddd;
}
.download-button-long {
    display: inline-block;
    background-color: #28a745;
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s;
    width: 250px; /* Increased width */
    margin: 0 auto;
    display: block;
}

.download-button-long:hover {
    background-color: #218838;
}

.download-button-long .arrow {
    margin-left: 10px;
}
.download-promise {
    text-align: center;
    font-size: 1rem;
    color: orange;
    margin-top: 10px;
    font-weight: 600;
}
.team-section {
    padding: 20px;
    margin: 20px 0;
    background-color: inherit; /* Uses body's background color */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.team-paragraph {
    font-size: 1.1rem;
    color: orange;
    line-height: 1.5;
    font-family: Arial, sans-serif;
}/* Styling for the Pick section */
.pick {
    font-size: 14px;
    margin-top: 5px;  /* Add a small margin above the pick to space it from the date */
    color: #007bff; /* Blue color for the text */
}

/* Highlighting the pick text */
.pick .highlight {
    font-weight: bold;
    color: #ff6f61; /* Red color to highlight the "Both Teams to Score" text */
}
.betting-slip .match .details .teams {
    color: #ffffff; /* Pure white for the team names */
    font-size: 1.1rem; /* Slightly larger for emphasis */
    font-weight: bold;
}

.betting-slip .match .details p:nth-child(2) {
    color: rgba(255, 255, 255, 0.8); /* Softer white for the date */
    font-size: 0.95rem; /* Slightly smaller font */
    font-style: italic; /* Optional to differentiate further */
}
/* Reset Styles */
.custom-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Section Styling */
.custom-section {
    font-family: Arial, sans-serif;
    background-color: #0f1324;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
}

/* Logo Styling */
.custom-section .logo {
    background-color: orange;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.custom-section .logo img {
    max-width: 100px;
}

/* Tabs Styling */
.custom-section .tabs {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.custom-section .tab-button {
    padding: 10px 15px;
    font-size: 16px;
    background-color: #1b2236;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin: 0 5px;
}

/* Remove hover effect */
.custom-section .tab-button:hover {
    background-color: #1b2236; /* No change on hover */
    color: white;
}

/* Active tab styling */
.custom-section .tab-button.active {
    background-color: orange;
    color: black;
}

.custom-section .results-section {
    display: none;
}

.custom-section .results-section.active {
    display: block;
}

/* Match Cards Styling */
.custom-section .container {
    max-width: 400px;
    margin: 20px auto;
    padding: 10px;
}

.custom-section .header {
    text-align: center;
    background-color: orange;
    padding: 10px;
    border-radius: 10px;
    font-size: 24px;
    font-weight: bold;
}

.custom-section .match-card {
    background-color: #1b2236;
    margin: 15px 0;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Flexbox adjustments */
.custom-section .team-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.custom-section .teams {
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin-bottom: 5px;
}

/* Making the prediction section longer */
.custom-section .prediction {
    background-color: orange;
    color: black;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    width: 120px;  /* Increased the width to make it longer */
    text-align: center;
    margin-top: 5px;
}

.custom-section .stats {
    text-align: right;
    flex: 1;
}

.custom-section .region {
    font-size: 14px;
    color: white;
    margin-bottom: 5px;
}

/* Move both 'Won' and 'Percentage' to the right */
.custom-section .won,
.custom-section .percentage {
    font-size: 14px;
    font-weight: bold;
    margin-top: 5px;
    margin-left: auto;  /* Align both to the right */
    text-align: right;
}

/* Styling for the "Won" Label */
.custom-section .won {
    color: limegreen;
}

/* Styling for the "Percentage" Label */
.custom-section .percentage {
    background-color: red;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    width: 80px;
    text-align: center;
}

/* Divider Styling between Teams */
.custom-section .divider {
    background-color: #1c2541;
    height: 10px;
    margin: 10px 0;
    border-radius: 5px;
}

/* Prevent the divider from affecting the whole page */
.custom-section .results-section {
    padding-bottom: 20px; /* To ensure the divider is properly spaced */
}
/* Styling for the Article */
.bet-card {
    background-color: #1b2236;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    color: #fff;
    font-family: Arial, sans-serif;
}

.bet-card .header {
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.bet-card .teams {
    font-size: 16px;
    color: white;
    margin-bottom: 10px;
}

/* Styling for the Footer */
.footer {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background-color: #2c3e50;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
}

/* Adjust the footer text */
.footer {
    font-size: 14px;
    font-weight: bold;
    color: limegreen;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 600px) {
    .bet-card {
        padding: 15px;
        margin-bottom: 15px;
    }

    .footer {
        font-size: 12px;
        padding: 8px;
    }
}
/* General Body Styles */
body {
    margin: 0;
    overflow-x: hidden; /* Prevent side scrolling */
    font-family: 'Arial', sans-serif; /* Set a default font */
    padding: 0;
    box-sizing: border-box;
    width: 100%; /* Ensure the body doesn't overflow */
}

/* Section Styles */
section {
    padding: 1.5rem;
    border-radius: 12px;
    background-color: rgba(44, 62, 80, 0.2);
    box-sizing: border-box;
    margin-top: 20px;
    text-align: center;
}

/* Typing Effect Text */
.center-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #f39c12; /* Attractive yellow cursor */
    padding-right: 5px;
    font-size: 5vw; /* Adjust text size dynamically based on viewport */
    color: #8e44ad; /* Deep purple color for the text */
    animation: typing 3s steps(30) 1s forwards, blink 0.75s step-end infinite;
    font-family: 'Courier New', Courier, monospace; /* Monospace font for typing effect */
}

/* Typing Effect Animation */
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Blinking Cursor Animation */
@keyframes blink {
    50% {
        border-color: transparent;
    }
    100% {
        border-color: #f39c12; /* Cursor color */
    }
}
/* General styling for the games container */
.games-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Styling for each game */
.game {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    transition: box-shadow 0.2s ease;
}

/* Hover effect for game cards */
.game:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Title styling */
.game p {
    margin: 5px 0;
    font-size: 14px;
    color: #2c3e50;
}

/* Strong text for labels */
.game strong {
    color: #1c2541;
    font-weight: 600;
}

/* Date and time styling */
.game p:last-child {
    font-style: italic;
    color: #777;
}
/* Teams text styling */
.match-card .team-info .teams {
    font-size: 12px; /* Smaller size */
    text-align: left; /* Align text to the left */
    display: block; /* Ensure each team starts on a new line */
    margin-bottom: 4px; /* Add spacing between teams and other content */
}

/* Region text styling */
.match-card .stats .region {
    font-size: 10px; /* Smaller size */
    text-align: right; /* Align text to the right */
    display: block; /* Ensure region text starts on a new line */
    margin-bottom: 4px; /* Add spacing */
}
/* For team names */
.teams {
    font-size: 12px; /* Smaller font size for teams */
}

/* For predictions */
.prediction {
    font-size: 10px; /* Smaller font size for predictions */
}

/* For regions */
.region {
    font-size: 10px; /* Smaller font size for regions */
}

/* For percentages */
.percentage {
    font-size: 12px; /* Slightly smaller font size for percentages */
}

/* For any other text inside the cards */
.match-card {
    font-size: 12px; /* General smaller font size for text */
}

