
        /* General body styling */
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f8f9fa;
        /* Adjusted for fixed navbar */
        }
        /* Custom brand colors for MunoBet/ForteBet theme */
        .bg-fortebet-green { background-color: #006400; } /* Dark Green */
        .text-fortebet-yellow { color: #FFDE00; }    /* Bright Yellow */

        /* Profile container/card styling */
        .profile-container {
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
            padding: 30px;
            margin-top: 20px; /* Space from navbar */
            text-align: center; /* Center content within the card */
            max-width: 500px; /* Limit the maximum width of the profile card */
            width: 100%; /* Ensure it takes full width up to max-width */
        }
        .profile-header {
            margin-bottom: 25px;
        }
        .profile-header h3 {
            color: #006400; /* Dark Green */
            font-weight: 700;
            margin-top: 15px;
        }
        .profile-info p {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: #343a40; /* Dark gray text */
            text-align: left; /* Align text to the left within info section */
        }
        .profile-info strong {
            color: #006400; /* Green for labels */
        }
        .profile-info i {
            margin-right: 8px;
            color: #FFDE00; /* Yellow icons */
        }

        /* Profile buttons styling */
        .profile-buttons {
            margin-top: 30px;
            display: flex; /* Use flexbox to arrange buttons */
            justify-content: center; /* Center buttons horizontally */
            gap: 15px; /* Space between buttons */
            flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
        }
        .profile-buttons .btn {
            padding: 0.75rem 1.5rem;
            border-radius: 9999px; /* Pill shape */
            font-weight: 600;
            transition: background-color 0.3s ease, color 0.3s ease;
            border: none;
        }
        .profile-buttons .btn-info {
            background-color: #006400; /* Dark Green */
            color: #FFFFFF;
        }
        .profile-buttons .btn-info:hover {
            background-color: #008000; /* Slightly lighter green on hover */
        }
        .profile-buttons .btn-success {
            background-color: #FFDE00; /* Yellow */
            color: #006400; /* Dark Green */
        }
        .profile-buttons .btn-success:hover {
            background-color: #FFD700; /* Slightly darker yellow on hover */
        }

        /* Alert styling (for success/danger messages) */
        .alert {
            margin-top: 1rem;
            text-align: left; /* Keep alert text left-aligned */
        }

        /* Navbar specific styling (from your previous code, ensures consistency) */
        .navbar.fixed-top { background-color: #006400 !important; }
        .offcanvas.bg-dark { background-color: #006400 !important; }
        .offcanvas-title.text-white { color: #FFFFFF !important; }
        .btn-close-white { filter: invert(1); } /* Makes close button white */
        .navbar-nav .nav-link .fas,
        .navbar-nav .nav-link .fa-regular { margin-right: 0.5rem; }
        .navbar-nav .nav-link.text-white { color: #FFFFFF !important; }
        .navbar-nav .nav-link.text-white:hover { background-color: #008000; } /* Lighter green on hover */
        .navbar .btn-outline-light, .navbar .btn-success {
            font-size: 0.75rem;
            padding: 0.3rem 0.8rem;
            border-radius: 9999px;
            font-weight: 600;
        }
        .navbar .btn-outline-light { border-color: #FFDE00; color: #FFDE00; }
        .navbar .btn-outline-light:hover { background-color: #FFDE00; color: #006400; }
        /* Note: .navbar .btn-success might conflict with profile card .btn-success if not specific enough.
           The profile card buttons have more specific selectors.