@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@500;700');


body {
    text-transform: inherit;
    background-repeat: repeat;
    font-size: 16px;
    letter-spacing: .5px;
    word-wrap: break-word;
    touch-action: pan-y;
    /* font-family: "Noto Serif TC", -apple-system, BlinkMacSystemFont,"Microsoft JhengHei", 微軟正黑體; */
    background-color: var(--light-bg);
}


.material-symbols-outlined,
.material-symbols-rounded:hover,
a:hover {
    text-decoration: none;
}

.mobile-container {
    background-color: var(--light-bg);
    position: relative;
    padding: 0px 15px 100px;
}


.container,
.content-container {
    max-width: 760px;
    margin: 0 auto;
}

/* Top Navigation Bar */
.top-navbar {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 99;
    height: 60px;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    height: 100%;
}

.navbar-icon {
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.navbar-icon:hover {
    background-color: rgba(139, 111, 71, 0.1);
}

.navbar-logo {
    font-size: 18px;
    font-weight: 600;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.navbar-logo img {
    height: 28px;
}

.button {
    display: flex;
    align-items: center;
    gap: 5px;
}

.button-white {
    background-color: #fff;
    color:#555;
}
.button-white:hover {
    background-color: #fff;
    color:#555;
}

/* Progress Bar Section */
.progress-section {
    background: white;
    margin: 20px;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.progress-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.progress-count {
    background: #f5f5f5;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 14px;
    color: #666;
}

.progress-bar-container {
    background: #f0f0f0;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-bar-fill {
    background: linear-gradient(90deg, #E55D87, #ffa3c0);
    height: 100%;
    width: 2.3%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.progress-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-percentage {
    font-size: 14px;
    color: #666;
}

.progress-time {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #E55D87;
    font-weight: 500;
}

.progress-time .material-symbols-outlined {
    font-size: 16px;
    margin-right: 4px;
}

.uk-offcanvas-close,
.uk-close {
        top: 15px;
        right: 15px;
        background-color: #f1f1f1;
        height: 36px;
        width: 36px;
        line-height: 36px;
        text-align: center;
        border-radius: 100%;
        color: #555 !important;
}

.uk-notification-message {
    color: #fff;
    background-color: #3E3E3E;
    font-size: 16px;
}
.uk-modal-title{
    font-size: 1.3rem;
}

.custom-tab-bar .tab-item {
    padding: 8px;
}

.uk-button-success:hover {
    color: #fff;
}

.uk-button {
    border-radius: 8px;
}

@media (max-width: 767px) {
    .top-navbar {
    box-shadow: inherit;
    }
}

@media (min-width: 768px) {
    .navbar-content,
    .mobile-container {
        max-width: 760px;
        margin: 0 auto;
    }
    .top-navbar {
    position: fixed;
    }
    .mobile-container {
    padding: 60px 15px 100px;
    }
    /* .uk-offcanvas-overlay {
        width: 70vw!important;
    } */
}