body {
    background-color: #2b2b2b;
    color: #e0e0e0;
    font-family: 'Inter', 'Roboto', sans-serif;
}
.navbar {
    background-color: #1f1f1f;
    border-bottom: 1px solid #3d3d3d;
}
.navbar-brand, .nav-link {
    color: #e0e0e0 !important;
}
.sidebar {
    background-color: #333333;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #4a4a4a;
}
.sidebar h5 {
    color: #ffffff;
    margin-bottom: 15px;
    border-bottom: 1px solid #4a4a4a;
    padding-bottom: 10px;
}
.card {
    background-color: #3a3a3a;
    border: 1px solid #4a4a4a;
}
.card-title {
    color: #ffffff;
}
.card-text {
    color: #cccccc;
}
a {
    color: #5ab1ee;
    text-decoration: none;
}
a:hover {
    color: #7dc5f3;
}
.album-card img {
    height: 200px;
    object-fit: cover;
}
.gallery-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.gallery-img:hover {
    transform: scale(1.02);
}
.admin-table {
    color: #e0e0e0;
}
.admin-table th {
    color: #ffffff;
    border-bottom-color: #4a4a4a;
}
.admin-table td {
    border-color: #4a4a4a;
}
