/* General body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Navbar styles */
.navbar {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    text-align: center;
}

.navbar h1 {
    font-size: 2rem;
    margin: 0;
}

/* Main container for layout */
.container {
    display: flex;
    padding: 0; /* Remove padding from container to avoid misalignment */
}

/* Sidebar styles */
.sidebar {
    width: 200px;
    background-color: #333;
    padding: 20px;
    color: white;
    height: 100vh; /* Ensures sidebar takes full viewport height */
    box-sizing: border-box;
}

/* Sidebar buttons */
.sidebar button {
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    margin-bottom: 15px; /* Spacing between buttons */
    cursor: pointer;
    width: 100%; /* Ensure full width of sidebar */
    text-align: left;
    padding: 10px; /* Add padding for better clickability */
    box-sizing: border-box;
}

.sidebar button:hover {
    background-color: #444;
}

/* Main content styling */
.main-content {
    flex-grow: 1; /* Take up remaining space */
    padding: 20px;
    box-sizing: border-box;
}

.main-content h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/* Styling for general buttons */
button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px; /* Optional: Rounded corners for buttons */
}

button:hover {
    background-color: #0056b3;
}

/* Ensure profile and redeem sections look consistent */
.profile-details, .redeem-section {
    margin-bottom: 20px;
}