body{
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #dbe5f1;
    margin: 0;
    padding: 0;
}
 .user-image {
max-width: 100px;
height: auto;
display: block;
margin: 0 auto;
}

.user-info {
text-align: center;
margin-bottom: 20px;
color: white;
}
.user-info p {
margin: 10px 0;
}
.user-info form {
display: inline-block;
}
.news-header {
    text-align: center;
    margin-top: 20px;
    margin-left: 220px;
}
.news-image {
    display: block;
    margin: 20px auto;
    max-width: 50%;
    height: auto;
}
.content {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background-color: white;
    margin-left: 220px; /* Adjusted to make space for the sidebar */
    background-color: #dbe5f1;
}
.category {
    flex: 1;
    margin: 0 10px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    
}
.category h2 {
    text-align: center;
    color: #333;
    font-size: 18px;
}
.category p {
    text-align: center;
    color: #666;
}
.category button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.category button:hover {
    background-color: #0056b3;
}
.details {
    margin-top: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-left: 255px; /* Adjusted to make space for the sidebar */
    margin-right: 20px;
    color: black;
    font-size: 20px;
    display: none; /* Initially hidden */
}
.balance {
    flex: 1;
    margin: 0 10px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 14px;
}
.balance h2 {
    color: #333;
}
.balance label {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.datetime {
    text-align: center;
    margin-top: 20px;
    font-size: 30px;
    color: #007bff;
    font-weight: bold;
}
.date, .time {
    display: block;
}

.sidebar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh; /* Full height of the viewport */
    padding: 20px;
    position: fixed; /* Fixed position */
    top: 0;
    left: 0;
    width: 200px; /* Adjust width as needed */
    background-color: #041f2c; /* Background color */
    overflow-y: auto; /* Scrollable if content overflows */
}
.sidebar button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    cursor: pointer;
    box-sizing: border-box;

    
}

