body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}
.sidebar {
    width: 250px;
    height: 100vh;
    background:rgb(233, 233, 233);
    padding-top: 20px;
    position: fixed;
    left: 0;
    top: 0;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}
.sidebar a {
    display: block;
    padding: 15px;
    text-decoration: none;
    color: #333;
    font-size: 18px;
}
.sidebar a:hover {
    background: #007bff;
    color: #fff;
}
.content {
    margin-left: 260px;
    padding: 20px;
}
.card {
    border-radius: 10px;
}
.card.deposit {
    background-color: #ebf3f5;
}
.card.withdraw {
    background-color: #ffeee6;
}
.card.balance {
    background-color: #ecf1ff;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 10px;
    margin-bottom: 20px;
}
.header .search-bar {
    width: 50%;
}
.header .icons {
    display: flex;
    align-items: center;
}
.header .icons i {
    font-size: 20px;
    margin-right: 15px;
    cursor: pointer;
}
.icons {
display: flex;
align-items: center;
gap: 15px; /* Spacing between bell and username */
}
.notification-container {
position: relative;
display: inline-block;
cursor: pointer;
}

.notification-badge {
background: red;
color: white;
font-size: 12px;
padding: 2px 6px;
border-radius: 50%;
position: absolute;
top: 0;
right: 0;
}

.notification-dropdown {
display: none;
position: absolute;
top: 30px;
right: 0;
background: white;
width: 250px;
border: 1px solid #ddd;
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
border-radius: 5px;
padding: 10px;
z-index: 1000;
}

.notification-dropdown.show {
display: block;
}

.notification-item {
padding: 8px;
border-bottom: 1px solid #eee;
}

.notification-item:last-child {
border-bottom: none;
}


/* Ensure .content layout remains intact */
.content {
margin-left: 250px; /* Adjust based on your sidebar width */
padding: 20px;
}
/* Active Sidebar Menu */
.sidebar a.active {
    background: #007bff;
    color: #fff;
    font-weight: bold;
}

/* Notification Container */
.notifications-container {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Styled Table */
.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
}

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

.styled-table th {
    background: #007bff;
    color: white;
    font-weight: bold;
}

.styled-table tr:hover {
    background: #f1f1f1;
}
