 /* News Admin Custom Styling */
body {
    background: #f4f7f9; /* Soft light grey background */
}

.login-wrapper {
    min-height: 85vh; /* Centers the card vertically */
    padding: 40px 0;
}

.login-card {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.admin-icon-box {
    display: inline-block;
    padding: 15px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
}

.form-control {
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: #fff !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.input-group-text {
    border-radius: 8px;
}

.btn-primary {
    border-radius: 8px;
    background: #0d6efd;
    border: none;
    transition: transform 0.2s ease;
}

.btn-primary:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}








body {
    background-color: #f8f9fa;
    font-family: 'Outfit', sans-serif;
}

#wrapper {
  overflow-x: auto;
    height: 100vh;
}

#sidebar {
    min-width: 280px;
    max-width: 280px;
    min-height: 100vh;
    transition: all 0.3s;
     overflow-x: auto;
}

.nav-link {
    transition: 0.2s;
    font-size: 0.95rem;
}

.nav-link:hover:not(.bg-primary) {
    background: rgba(255, 255, 255, 0.1);
}

.icon-shape {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-soft-primary { background-color: #e7f0ff; }
.x-small { font-size: 0.75rem; }