body {
    background: linear-gradient(135deg, #fdd5d7, #f9f6f8, #d7f3fd, #d7fdd7);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 30px;
    max-width: 400px;
    width: 100%;
}

.login-card h2 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5rem;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.btn {
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background-color: #0056b3;
}

/* Sidebar */
#sidebar {
    width: 250px;
    min-height: 100vh;
}

/* Sidebar Links */
.nav-link {
    padding: 10px;
    transition: all 0.3s ease-in-out;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

/* Dashboard Cards */
#wrapper {
    width: 100%;
    display: flex;
}

#sidebar {
    width: 250px;
    height: 100%;
    position: sticky;
}

.container {
    margin-left: 270px;
}

.card {
    border-radius: 10px;
    transition: transform 0.2s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
}

.main-content {
    padding: 20px;
}

.cover-img {
    width: 100%;
    max-width: 300px;
    display: block;
    margin-bottom: 10px;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gallery-item {
    position: relative;
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.delete-icon {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px;
    border-radius: 50%;
    text-decoration: none;
}

.delete-icon:hover {
    background: red;
}