.dte-categories-premium {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f8fafc;
    min-height: 100vh;
    padding: 20px 0;
}

/* Header Section */
.dte-categories-header {
    background: linear-gradient(135deg, #6CC4BF 0%, #4e8683 100%);
    color: white;
    padding: 3rem 0;
    margin: -20px -12px 0 -12px;
}

.dte-header-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.dte-header-title {
    font-size: 2.25rem !important;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.dte-header-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Stats Cards */
.dte-stat-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.dte-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.dte-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 1rem;
}

.dte-total-card .dte-stat-icon { background: rgba(108, 196, 191, 0.1); color: #6CC4BF; }
.dte-income-card .dte-stat-icon { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.dte-expense-card .dte-stat-icon { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

.dte-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.dte-stat-label {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.25rem;
}

/* Content Card */
.dte-content-card {
    background: white;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Form Section */
.dte-form-section {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 2rem;
}

.dte-form-header {
    margin-bottom: 1.5rem;
}

.dte-form-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0;
}

.dte-form-body {
    max-width: 600px;
}

.dte-form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    display: block;
}

.dte-form-input, .dte-form-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.dte-form-input:focus, .dte-form-select:focus {
    border-color: #6CC4BF;
    box-shadow: 0 0 0 3px rgba(108, 196, 191, 0.1);
    outline: none;
}

.dte-form-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Buttons */
.dte-btn-primary {
    background: linear-gradient(135deg, #6CC4BF, #4e8683);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dte-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 196, 191, 0.3);
    color: white;
}

.dte-btn-success {
    background: #6CC4BF;
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
}

.dte-btn-secondary {
    background: #f8fafc;
    border: 1px solid #d1d5db;
    color: #374151;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
}

/* Categories Section */
.dte-categories-section {
    padding: 2rem;
}

/* Category Cards */
.dte-category-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.dte-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

.dte-income-category {
    border-left: 4px solid #10b981;
}

.dte-expense-category {
    border-left: 4px solid #ef4444;
}

.dte-category-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.dte-income-category .dte-category-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.dte-expense-category .dte-category-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.dte-category-content {
    flex-grow: 1;
}

.dte-category-name {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.dte-category-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.dte-income-category .dte-category-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.dte-expense-category .dte-category-badge {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.dte-category-actions {
    margin-left: auto;
}

.dte-delete-btn {
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444;
    transition: all 0.3s ease;
}

.dte-delete-btn:hover {
    background: #ef4444;
    color: white;
}

/* Empty State */
.dte-empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.dte-empty-icon {
    font-size: 4rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.dte-empty-title {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.dte-empty-text {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}
@media (max-width: 1025px) {
.dte-categories-header
{
    margin: -8px 9px 0 0px;
} 
.dte-header-title {
    font-size: 1.725rem !important;
   
}

}


/* Responsive Design */
@media (max-width: 768px) {
    .dte-categories-header {
        padding: 2rem 0;
    }
    
    .dte-header-title {
        font-size: 1.725rem !important;
    }
    
    .dte-form-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .dte-category-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .dte-category-actions {
        margin-left: 0;
    }
}

/* Animations */
@keyframes dte-fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dte-form-section {
    animation: dte-fadeIn 0.3s ease;
}

.dte-category-card {
    animation: dte-fadeIn 0.5s ease;
}

@media (max-width: 425px) {
.col-md-4.text-end {
    text-align: start !important;
    margin: 20px 0px;
}
.dte-header-title {
    font-size: 1.725rem !important;
   
}

}