/* Custom Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #ffffff; /* Background putih */
    color: #333; /* Warna teks gelap */
    margin: 0;
    padding: 0;
}

/* Welcome Section */
.welcome-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/gedung_man_temanggung.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.welcome-section h1 {
    font-size: 3rem;
    font-weight: bold;
}

.welcome-section p {
    font-size: 1.5rem;
}

/* Menu Section */
.menu-section .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.menu-section .card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.menu-section .card-text {
    font-size: 0.9rem;
    color: #666;
}

.menu-section .btn {
    margin-top: 10px;
}
/* Sidebar */
        .sidebar {
            height: 100vh;
            width: 250px;
            position: fixed;
            top: 0;
            left: 0;
            background-color: #55677f;
            padding-top: 20px;
        }
        .sidebar a {
            padding: 10px 15px;
            text-decoration: none;
            font-size: 14px; /* Ukuran tulisan diperkecil */
            color: #ffffff;
            display: block;
        }
        .sidebar a:hover {
            background-color: #3a4659;
        }
        .sidebar .active {
            background-color: #3a4659;
        }
        /* Profil Admin */
        .profile-section {
            text-align: center;
            padding: 20px 0;
            border-bottom: 1px solid #3a4659;
            margin-bottom: 20px;
        }
        .profile-section img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-bottom: 10px;
        }
        .profile-section p {
            color: #ffffff;
            font-size: 14px; /* Ukuran tulisan diperkecil */
            margin: 0;
        }
        /* Main Content */
        .main-content {
            margin-left: 250px;
            padding: 80px 20px 20px; /* Padding atas ditambah untuk menghindari navbar */
        }
        /* Navbar Top */
        .navbar-top {
            background-color: #ffffff;
            padding: 10px 20px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            position: fixed;
            top: 0;
            right: 0;
            left: 250px;
            z-index: 1000;
        }
        .navbar-top .logout-btn {
            color: #55677f;
            text-decoration: none;
        }
        .navbar-top .logout-btn:hover {
            color: #3a4659;
        }
        /* Dashboard Cards */
        .dashboard-card {
            background-color: #ffffff;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            padding: 20px;
            margin-bottom: 20px;
        }
        .dashboard-card h3 {
            font-size: 18px;
            margin-bottom: 15px;
            color: #55677f;
        }
        .dashboard-card p {
            font-size: 14px;
            color: #666;
        }