        body {
            margin: 0;
            font-family: Arial, sans-serif;
            display: flex;
            flex-direction: column;
            height: 100vh;
            background: linear-gradient(to bottom, #e3f2fd, #ffffff);
        }

        .content {
            flex: 1;
            display: none;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            text-align: center;
            padding: 10px;
            height: 100%;
            overflow-y: auto;
        }
        
        

        .content.active {
            display: flex;
            animation: fadeIn 0.5s ease-in-out;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

    .tab-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #333;
    color: white;
    padding: 4px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Pastikan tab-bar di atas konten lainnya */
}


        .tab-bar a {
            text-decoration: none;
            color: white;
            font-size: 14px;
            flex: 1;
            text-align: center;
            padding: 1px;
            border-radius: 100px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .tab-bar a:hover {
            background-color: #007BFF;
            transform: scale(1.1);
        }

        .active-tab {
            background-color: #007BFF;
        }

        .active-tab:hover {
            transform: scale(1);
        }

        .icon {
            font-size: 20px;
        }

        .tab-name {
            font-size: 12px;
        }
        

#grafik-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80%;
    padding: 20px;
    box-sizing: border-box;
}

canvas {
    width: 95%;
    height: 80%; /* Sesuaikan tinggi grafik */
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
}

th {
    background-color: #007BFF;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1;
}

input {
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
}

input:focus {
    outline: none;
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}


        .music-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            padding: 10px;
        }

        .music-list {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }

        .music-item {
            width: 100px;
            padding: 30px;
            text-align: center;
            background-color: #f9f9f9;
            border-radius: 80px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }

        .music-item:hover {
            transform: scale(1.1);
        }

        .music-item button {
            background-color: #007BFF;
            color: white;
            border: none;
            padding: 10px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .music-item button:hover {
            background-color: #0056b3;
        }

        audio {
            width: 100%;
            margin-top: 20px;
        }
        
                .logo-atas {
            width: 200px;
            padding: 10px;
            text-align: center;
            background-color: #f9f9f9;
            border-radius: 80px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }
        
.statistics-container {
    display: flex;
    flex-direction: column; /* Susunan ke bawah */
    align-items: center;
    margin-top: 50px;
    gap: 20px; /* Jarak antar elemen */
}

.stat-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 20px;
    text-align: center;
    width: 200%; /* Lebar kartu */
    max-width: 400px; /* Maksimal lebar */
}

.stat-card h3 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #007BFF;
}

.stat-card p {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.filter-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px; /* Jarak antar tombol */
}

.filter-container button {
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background-color: #007BFF;
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.filter-container button:hover {
    background-color: #0056b3;
}


        #reset-table {
            margin-top: 10px;
            background-color: #007BFF;
            color: white;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        #reset-table:hover {
            background-color: #0056b3;
        }
        
                /* Tabel di tab Plan */
        .plan-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .plan-table th, .plan-table td {
            padding: 3px;
            height: 30px;
            text-align: center;
            border: 1px solid #ddd;
        }

        .plan-table th {
            background-color: #007BFF;
            color: white;
            position: sticky;
            top: 0;
            z-index: 1;
        }

        .plan-table tbody tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
