html, body {
    background-color: #f5f7fa;
    font-family: "Comic Neue", cursive;
    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: #FF7F00;
    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: #cc6500;
}

.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: #FF7F00;
    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: #FF7F00;
    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: #FF7F00;
    margin-right: 10px;
}

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

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

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

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

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

.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: #FF7F00;
        margin-bottom: 20px;
    }

    #current-date {
        color: #FF7F00;
    }

    .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: #FF7F00;
    }

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






    /* Start of Profile Styling */
    body {
        background-color: #f5f7fa;
        font-family: "Comic Neue", cursive;
        margin: 0;
        padding: 0;
        color: #333;
    }

    .profile-container {
        max-width: 1150px;
        margin: 50px auto;
        background-color: #fff;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }

    h1 {
        font-size: 1.8rem;
        color: #FF7F00;
        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: #FF7F00;
        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: #FF7F00;
        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: #cc6500;
    }

    @media (max-width: 768px) {
        .form-group {
            flex: 1 1 100%;
        }
    }
    
       .profile-image-container {
position: relative;
display: flex;
justify-content: center; /* Center horizontally */
align-items: center; /* Center vertically */
width: 120px; /* Adjust the size as needed */
height: 120px; /* Adjust the size as needed */
margin: 20px 0;
border-radius: 50%;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Slightly stronger shadow */
}

.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); /* Slight zoom effect when hovering */
}

.edit-icon {
position: absolute;
bottom: 5px;
right: 5px;
background-color: rgba(0, 0, 0, 0.6); /* Dark background for the edit icon */
color: white;
border-radius: 50%;
padding: 8px;
font-size: 18px;
cursor: pointer;
transition: background-color 0.3s;
}

.edit-icon:hover {
background-color: #FF7F00; /* Highlighted color on hover */
}

/* Optional: Add focus styles for better accessibility */
input[type="file"]:focus + .edit-icon {
outline: 2px solid #FF7F00; /* Focused outline */
}


.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: #FF7F00;
    --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: #FF7F00;
        }

        
        
        /* 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; }

