.mobile-header {
    background: white;
    padding: 1opx;
    border-bottom: 1px solid #f0f0f0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
}

.mobile-header-content {
    display: flex;
    align-items: end;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.mobile-header-left {
    display: flex;
    align-items: center;
    flex: 1;
}

.mobile-header-back-button {
    margin-right: 12px;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.mobile-header-title {
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .mobile-header {
        padding: 28px 16px 14px 16px;
        height: 100px;
    }
    
    .mobile-header-title {
        font-size: 15px !important;
    }
}

