.category-icon {
    width: 30px;
    height: 30px;
    margin-right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: white;
}

.budget-progress {
    height: 8px;
    margin-top: 5px;
}

.expense-time {
    color: #6c757d;
    font-size: 0.85rem;
}

.recurring-badge {
    background-color: #17a2b8;
}

.onetime-badge {
    background-color: #6c757d;
}

.auto-badge {
    background-color: #28a745;
}

.normal-badge {
    background-color: #007bff;
}

.expense-card {
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.expense-card:hover {
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.upload-photo {
    border: 2px dashed #ccc;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
}

.upload-photo:hover {
    border-color: #007bff;
}

.add-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #7367f0;
    color: white;
    transition: all 0.3s ease;
}

.add-icon a:hover {
    background-color: #5e50ee;
    transform: scale(1.1);
}

.btn-submit {
    background-color: #7367f0;
    color: white;
}

.btn-submit:hover {
    background-color: #5e50ee;
    color: white;
}

.category-color {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 5px;
    border-radius: 4px;
}

/* Onboarding Page Styles */
.onboarding-page {
    background-color: #f5f7fa;
    min-height: 100vh;
}

.onboarding-wrapper {
    padding: 40px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.logo-text {
    color: #5e5873;
    font-weight: 700;
}

.category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
}

.category-card {
    position: relative;
}

.category-checkbox {
    position: absolute;
    opacity: 0;
}

.category-label {
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.2s;
}

.category-checkbox:checked + .category-label {
    border-color: #7367f0;
    background-color: rgba(115, 103, 240, 0.05);
}

.category-checkbox:focus + .category-label {
    box-shadow: 0 0 0 0.25rem rgba(115, 103, 240, 0.25);
}

.custom-category-input .category-icon {
    flex-shrink: 0;
}

/* Steps navigation */
.steps-nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.step-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -50%;
    width: 100%;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

.step-item.active:not(:last-child)::after,
.step-item.completed:not(:last-child)::after {
    background-color: #7367f0;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.step-item.active .step-number,
.step-item.completed .step-number {
    border-color: #7367f0;
    background-color: #7367f0;
    color: white;
}

.step-item.completed .step-number {
    background-color: #28c76f;
    border-color: #28c76f;
}

.step-item.active .step-title {
    color: #7367f0;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .onboarding-wrapper {
        padding: 20px 0;
    }
    
    .steps-nav {
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .step-item {
        min-width: 100px;
    }
}