/* =========================================
   UI QUẢN LÝ TÀI SẢN (ASSET MANAGER)
   ========================================= */

.asset-total-card {
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
    border-radius: 16px;
    padding: 25px 20px;
    color: white;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
    margin-bottom: 20px;
    text-align: center;
}

.asset-total-label {
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.asset-total-val {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    word-wrap: break-word;
}

.asset-chart-container {
    width: 100%;
    position: relative;
}

/* Đảm bảo modal không bị đè CSS */
#assetModalOverlay {
    z-index: 3500;
}

#assetPage {
    /* Đảm bảo trang tài sản hiện độc lập */
    background-color: #f8fafc;
}

/* Đảm bảo nút (+) lọt lòng tương tự Sổ Vàng */
#assetPage:not(.open) .sv-fab-add {
    display: none !important;
}

/* =========================================
   UI SỔ TIẾT KIỆM & THANH TIẾN ĐỘ
   ========================================= */
.savings-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
    background: #f8fafc;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #f1f5f9;
}

.savings-detail-item {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
    color: #64748b;
}

.savings-detail-item span {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.95rem;
    margin-top: 3px;
}

/* Khung Progress Bar */
.savings-progress-wrap {
    margin-top: 20px;
    padding: 0 5px;
}

.savings-progress-bg {
    background: #e2e8f0;
    border-radius: 10px;
    height: 8px;
    width: 100%;
    position: relative;
}

.savings-progress-fill {
    background: linear-gradient(90deg, #a3e635 0%, #3b82f6 100%); /* Xanh lá sang Xanh biển */
    height: 100%;
    border-radius: 10px;
    position: relative;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Nút Thumb phát sáng ở chóp thanh tiến độ */
.savings-progress-thumb {
    position: absolute;
    right: -10px;
    top: -6px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #60a5fa 30%, #2563eb 100%);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
}

/* Text Thời gian */
.savings-info-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 12px;
}

.savings-info-val {
    font-weight: 700;
    color: #1e293b;
    font-size: 0.95rem;
    margin-top: 4px;
    display: block;
}

/* Thêm hiệu ứng cho thẻ có thể bấm được */
.savings-card-clickable {
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s active;
}

.savings-card-clickable:hover {
    background-color: #f8fafc; /* Hơi sáng lên khi di chuột */
}

.savings-card-clickable:active {
    transform: scale(0.99); /* Hiệu ứng lún xuống nhẹ khi bấm */
}

/* Phần chi tiết ẩn */
.savings-expandable {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.2s ease, margin-top 0.2s;
    opacity: 0;
}

.savings-expandable.show {
    max-height: 300px; /* Đủ rộng cho nội dung */
    opacity: 1;
    margin-top: 15px;
}

/* Icon mũi tên xoay */
.chevron-savings {
    transition: transform 0.3s ease;
    color: #94a3b8;
}