/* 🎨 Layout Custom Styles - Using Design System Variables */

/* Body Styles */
body {
    background: var(--bg-light) !important;
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-primary) !important;
}

/* Main Content */
.main-content {
    margin-left: 70px;
    padding: 2rem;
    min-height: 100vh;
    color: var(--text-primary) !important;
}

/* Card Styles */
.welcome-card {
    background: var(--bg-transparent) !important;
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
    color: var(--text-primary) !important;
}

.app-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    color: var(--text-white) !important;
}

.app-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary) !important;
}

.app-description {
    color: var(--text-secondary) !important;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.stats-card {
    background: var(--gradient-primary);
    color: var(--text-white) !important;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white) !important;
    font-weight: bold;
    font-size: 14px;
}

/* Form Required Field Indicator */
.required::after {
    content: " *";
    color: var(--danger) !important;
}

/* Reset Box Shadow and Outline */
input,
textarea,
select,
span,
a,
button {
    box-shadow: none !important;
    outline: none !important;
}

/* Additional Layout Elements */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary) !important;
}

p {
    color: var(--text-primary) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-secondary {
    color: var(--text-secondary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-success {
    color: var(--success) !important;
}

.text-danger {
    color: var(--danger) !important;
}

.text-warning {
    color: var(--warning) !important;
}

.text-info {
    color: var(--info) !important;
}

.text-white {
    color: var(--text-white) !important;
}

.text-dark {
    color: var(--text-dark) !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-content {
        margin-left: 0;
        padding: 1rem;
    }
}