* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f5f5f5;
}

.container {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

.profile-pic {
    width: 100%;
    height: auto;
    max-width: 400px;
    margin-bottom: 15px;
    border-radius: 0;
}

h1 {
    font-size: 24px;
    margin-bottom: 5px;
}

p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.links .link-btn {
    display: block;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    padding: 12px;
    border-radius: 5px;
    margin: 10px 0;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.links .link-btn:hover {
    background-color: #0056b3;
}

/* Gaya untuk toast */
.toast {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: black;
    text-align: center;
    border-radius: 5px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    font-size: 17px;
}

/* Tampilkan toast */
.toast.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animasi fade in/out */
@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}
 /* Style dasar untuk tombol */
  .expand-btn {
            background-color: #4CAF50;
            color: white;
            padding: 10px 20px;
            font-size: 16px;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .expand-btn i {
            margin-left: 10px;
            transition: transform 0.3s;
        }

        /* Ikon berputar saat dropdown terbuka */
        .expand-btn.active i {
            transform: rotate(180deg);
        }

        /* Konten dropdown tersembunyi secara default */
        .dropdown-content {
            max-height: 0;
            overflow: hidden;
            padding: 0;
            background-color: #f9f9f9;
            border: 1px solid #ddd;
            border-top: none;
            transition: max-height 0.5s ease, padding 0.5s ease;
        }

        /* Konten akan muncul saat tombol diklik */
        .dropdown-content.show {
            max-height: 300px; /* Adjust sesuai dengan tinggi konten */
            padding: 10px;
        }
		
        /* Modal customization */
        .modal-header {
            background-color: #4CAF50;
            color: white;
        }

        .modal-body {
            font-size: 16px;
        }