html, body {
    background-color: #f5f7fa;
    font-family: font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    height: 100%;
}

.account-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 10px;
}

.dashboard {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.dashboard .profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color:#fff;
}

.profile {
    display: flex;
    align-items: center;
    gap: 20px;
}



.profile img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.profile h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #333;
}

.edit-profile-btn button {
    background-color: #ff0000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.edit-profile-btn button:hover {
    background-color: #008000;
}

.account-info {
    margin-top: 20px;
    border-radius: 10px;
}

.account-info div {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: #fff3e0;
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.account-info div span {
    font-weight: bold;
}

.status-container {
display: flex;
align-items: center;
gap: 10px; /* Add space between the text and status */
}

.status {
    padding: 5px 10px;
    color: white; /* Text color */
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
}

.status.active {
    background-color: green; /* Green background for active */
}

.status.inactive {
    background-color: red; /* Red background for inactive */
}

.content {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.content h1 {
    font-size: 1.5rem;
    color: #ff0000;
    margin-bottom: 10px;
}

.content p {
    margin: 10px 0;
    line-height: 1.6;
    color: #555;
}

.package-container {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.package-container h1 {
    font-size: 1.5rem;
    color: #ff0000;
    margin-bottom: 10px;
}

.package-container p.subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}

.plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.plan {
    background-color: #fff3e0;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #ffcc80; /* Soft border */
}

.plan h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.plan ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    margin-bottom: 20px;
}

.plan ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.plan ul li::before {
    content: '\2713';
    color: #ff0000;
    margin-right: 10px;
}

.plan h2::before {
content: '\1F48E';
margin-right: 8px;
color: #ff0000;
}

.plan .price {
    font-size: 1.5rem;
    color: #ff0000;
    margin-bottom: 10px;
}

.plan .price span {
    font-size: 0.9rem;
    color: #555;
}

.plan button {
    background-color: #ff0000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.plan button:hover {
    background-color: #008000;
}

.payment-section {
    text-align: center;
    margin-top: 30px;
}

.payment-section img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

@media (max-width: 768px) {
    .profile img {
        width: 80px;
        height: 80px;
    }

    .content h1 {
        font-size: 1.3rem;
    }

    .plan h2 {
        font-size: 1.3rem;
    }
}

        .odds-container {
        background-color: #fff;
        border-radius: 10px;
       
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        width: 80%;
        margin: 20px auto;
        text-align: center;
    }

    .odds-container h2 {
        font-size: 1.5rem;
        color: #ff0000;
        margin-bottom: 20px;
    }

    #current-date {
        color: #ff0000;
    }

    .odds-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
    }

    .odds-table th,
    .odds-table td {
        padding: 10px;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }

    .odds-table th {
        background-color: #fff3e0;
        color: #333;
    }

    .odds-table td {
        font-size: 1rem;
        color: #333;
    }

    .odds-table .odds {
        font-weight: bold;
        color: #ff0000;
    }

    .odds-table .options {
        color: #ff0000;
    }






    /* Start of Profile Styling */
body {
    background-color: #f5f7fa;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}
.profile-container {
    max-width: 1150px;
    margin: 50px 20px; /* Changed from 'margin: 50px auto;' to add side margins */
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

/* For larger screens, center it with auto margins */
@media (min-width: 768px) {
    .profile-container {
        margin: 50px auto;
        max-width: calc(100% - 40px); /* Adds 20px space on each side */
    }
}

@media (min-width: 1200px) {
    .profile-container {
        max-width: 1150px;
    }
}

h1 {
    font-size: 1.8rem;
    color: #ff0000;
    text-align: center;
    margin-bottom: 20px;
}
form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.form-group {
    flex: 1 1 calc(50% - 20px);
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-weight: bold;
    margin-bottom: 8px;
    color: #555;
}
.form-group input {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background-color: #f9f9f9;
    color: #333;
}
.form-group input:focus {
    border-color: #ff0000;
    outline: none;
    background-color: #fff;
}
.form-group.full-width {
    flex: 1 1 100%;
}
.submit-btn {
    flex: 1 1 100%;
    text-align: center;
    margin-top: 20px;
}
.submit-btn button {
    background-color: #ff0000;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.submit-btn button:hover {
    background-color: #008000;
}
@media (max-width: 768px) {
    .form-group {
        flex: 1 1 100%;
    }
}

.profile-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    margin: 20px 0;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.profile-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out;
}
.profile-image-container:hover img {
    transform: scale(1.1);
}
.edit-icon {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border-radius: 50%;
    padding: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.edit-icon:hover {
    background-color: #ff0000;
}
input[type="file"]:focus + .edit-icon {
    outline: 2px solid #ff0000;
}
.payment-section {
    text-align: center;
}
.payment-section img {
    max-width: 20%;
    height: auto;
    margin: 20px 0;
}
@media (max-width: 768px) {
    .payment-section img {
        max-width: 80%;
    }
}
  
  
/* Football Prediction Page Styles */
:root {
    --primary-color: #ff0000;
    --hover-effect: rgba(255, 127, 0, 0.8);
    --text-color: #fff; /* Ensuring text is visible */
}

.prediction-container2 {
    width: 100%;
    max-width: 1200px; /* Adjust for wider screens */
    color: var(--primary-color);
    text-align: center;
    margin: 0 auto;
    margin-buttom: 80px;
}

.prediction-title2 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 10px;
}

.prediction-categories2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 per row by default */
    gap: 20px;
    padding: 20px;
}

/* Prediction Card Styling */
.prediction-card {
    background-color: var(--primary-color);
    color: var(--text-color); /* Ensuring text is visible */
    padding: 40px;
    border-radius: 12px;
    position: relative;
    transition: transform 0.3s ease-in-out, background-color 0.3s, box-shadow 0.3s;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(255, 127, 0, 0.4);
}

.prediction-card:hover {
    background-color: var(--hover-effect);
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(255, 127, 0, 0.6);
}

.prediction-card span {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #000;
    color: #fff;
    padding: 6px 10px;
    font-size: 14px;
    border-radius: 5px;
}

/* Responsive Adjustments */

/* Medium screens (Tablets) - 3 per row */
@media (max-width: 1024px) {
    .prediction-categories2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Smaller tablets - 2 per row */
@media (max-width: 768px) {
    .prediction-categories2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile screens - 1 per row */
@media (max-width: 480px) {
    .prediction-categories2 {
        grid-template-columns: repeat(1, 1fr);
        width: 100%; /* Ensures it uses the full width */
    }

    .prediction-card {
        padding: 30px;
        font-size: 18px; /* Reduce text size for smaller screens */
    }
}




/* Forgot password setting page and error style */

        .btn-primary {
            background-color: var(--primary-color);
            border: none;
            width: 100%;
            padding: 10px;
            font-size: 16px;
        }

        .btn-primary:hover {
            background-color: #ff0000;
        }

        
        
        /* Styles for error and success messages */
        .compact-error-message, .compact-success-message {
            padding: 12px 16px;
            border-radius: 6px;
            margin-top: 15px;
            font-size: 15px;
            font-family: 'Arial', sans-serif;
            display: flex;
            align-items: center;
            animation: fadeIn 0.4s ease-out;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        .compact-error-message {
            background: linear-gradient(135deg, #f8d7da, #f5c6cb);
            color: #721c24;
            border-left: 5px solid #dc3545;
        }
        
        .compact-success-message {
            background: linear-gradient(135deg, #d4edda, #c3e6cb);
            color: #155724;
            border-left: 5px solid #1D73BE;
        }
        
        .compact-message i {
            margin-right: 8px;
            font-size: 18px;
        }
        
        .compact-error-message i { color: #dc3545; }
        .compact-success-message i { color: #1D73BE; }
        
        
        
        
        
        
        /* Newsletter Section Styles */
.newsletter-subscription-section {
    background: #3a3a3a;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.newsletter-subscription-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 0, 0.1) 0%, transparent 50%);
    opacity: 0.5;
}

.newsletter-subscription-container {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.newsletter-subscription-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 20px;
    padding: 60px 50px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.newsletter-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    border-radius: 50%;
    margin: 0 auto 30px;
    animation: iconPulse 2s ease-in-out infinite;
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.6);
}

.newsletter-icon-wrapper i {
    font-size: 45px;
    color: white;
}

@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 50px rgba(255, 0, 0, 0.6);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 70px rgba(255, 0, 0, 0.8);
    }
}

.newsletter-text-content {
    margin-bottom: 40px;
}

.newsletter-sub-heading {
    color: #00ff00;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.4);
}

.newsletter-main-heading {
    color: white;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.newsletter-description-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-signup-form {
    width: 100%;
}

.newsletter-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 8px 8px 8px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin: 0 auto 40px;
    max-width: 700px;
}

.newsletter-envelope-icon {
    color: #999;
    font-size: 20px;
    margin-right: 15px;
}

.newsletter-email-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
    background: transparent;
    padding: 15px 15px;
}

.newsletter-email-input::placeholder {
    color: #999;
}

.newsletter-submit-button {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 0, 0, 0.4);
    white-space: nowrap;
}

.newsletter-submit-button:hover {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 0, 0, 0.6);
}

.newsletter-submit-button i {
    transition: transform 0.3s ease;
}

.newsletter-submit-button:hover i {
    transform: translateX(5px);
}

.newsletter-feature-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-feature-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid rgba(0, 255, 0, 0.5);
    color: #00ff00;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
}

.newsletter-feature-item i {
    font-size: 16px;
    color: #00ff00;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .newsletter-subscription-container {
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    .newsletter-subscription-section {
        padding: 50px 15px;
    }
    
    .newsletter-subscription-content {
        padding: 40px 25px;
    }
    
    .newsletter-main-heading {
        font-size: 32px;
    }
    
    .newsletter-description-text {
        font-size: 16px;
    }
    
    .newsletter-input-wrapper {
        flex-direction: column;
        padding: 20px;
        border-radius: 20px;
    }
    
    .newsletter-email-input {
        width: 100%;
        text-align: center;
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .newsletter-submit-button {
        width: 100%;
         padding: 15px 30px;
        justify-content: center;
    }
    
    .newsletter-envelope-icon {
        display: none;
    }
    
    .newsletter-feature-list {
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
    }
    
    .newsletter-feature-item {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .newsletter-main-heading {
        font-size: 28px;
    }
    
    .newsletter-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .newsletter-icon-wrapper i {
        font-size: 36px;
    }
    
    .newsletter-sub-heading {
        font-size: 14px;
    }
}

    
    