<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    color: #6f8454;
}

.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: #f9f9f9;
    color: #333;
    font-size: 16px;
}
.container {
    max-width: 100%;
    margin: 0 auto;
    background-color: white;
    min-height: 100vh;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    position: relative;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    background-color: white;
    z-index: 10;
}
.logo {
    font-weight: bold;
    font-size: 18px;
}
.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.menu-icon {
    cursor: pointer;
    color: #789864;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.icon-button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #333;
    border: 1px solid #eee;
}
.search-container {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
}
.search-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #f5f5f5;
    border-radius: 20px;
    padding: 8px 12px;
}
.search-icon {
    color: #aaa;
}
.search-input {
    border: none;
    background: transparent;
    width: 100%;
    font-size: 14px;
    outline: none;
    color: #666;
}
.content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 120px);
}
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 300px;
}
.empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.empty-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 8px;
}
.empty-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 24px;
}
.btn {
    padding: 12px 16px;
    background-color: #789864;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    width: 100%;
    margin-bottom: 12px;
    font-size: 14px;
    display: block;
    text-decoration: none;
}
.btn:hover {
    background-color: #68855a;
}

.sidebar {
    width: 85%;
    max-width: 300px;
}

/* Buat tablet (768px keatas) */
@media (min-width: 768px) {
    body {
        font-size: 16px;
        background-color: #efefef;
    }
    .container {
        max-width: 700px;
        border-radius: 10px;
        margin-top: 20px;
        margin-bottom: 20px;
        min-height: calc(100vh - 40px);
    }
    .btn {
        font-size: 16px;
    }
}

/* Buat laptop/desktop (992px keatas) */
@media (min-width: 992px) {
    .container {
        max-width: 800px;
    }
    .search-container {
        padding: 20px 30px;
    }
    .content {
        padding: 30px;
    }
}

/* Ini buat layar yang gede (1200px keatas) */
@media (min-width: 1200px) {
    .container {
        max-width: 900px;
    }
    .header {
        padding: 20px 30px;
    }
}

.tombol {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.contact-container, .bill-container, .group-list {
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

input, select, textarea {
    max-width: 100%;
}</pre></body></html>