body {
	background-color: #F5F5F5;
}
.btn-primary {
	background-color: #4ca3f7;
	border-color: #4ca3f7;
}
.btn-primary:hover {
	background-color: #71b6f9;
	border-color: #71b6f9;
}
.text-sm {
    font-size: 0.875rem;
}

#sidebar-menu > ul > li > a.active {
	color: #4ca3f7;
	background: #fff;
	border-radius: 19px;
	margin: 15px 5px;
}
.nav-second-level li.mm-active > a, .nav-third-level li.mm-active > a {
	color: #4ca3f7;
}

.logo-box {
	background-color: #F5F5F5;
}
.navbar-custom {
	background-color: #F5F5F5;
}
.left-side-menu {
	background: #F5F5F5;
	-webkit-box-shadow: none;
	box-shadow: none;
}

footer {
	background-color: transparent !important;
	padding: 5px !important;
	z-index: 0!important;
}
.attributes {
	background-color: #f2f2f2;
	margin-bottom: 15px;
	padding: 20px;
	border-radius: 5px;
}
.attributes .close-btn {
	position: absolute;
	top: 0;
	right: 0;
}

.btn-remove {
	position: absolute;
	right: 10px;
	top: 5px;
	color: #ff5b5b;
	font-size: 1.1rem;
}
.right-0 {
	right: 0 !important;
}
.user-desc {
	margin-top: 0.7rem;
}
.text-avatar {
	padding: 20px;
	border-radius: 50%;
	text-align: center;
	font-weight: 500;
	display: flex;
	justify-content: center;
	align-items: center;
}
.text-avatar-lg {
	font-size: 20px;
	width: 4.5rem;
	height: 4.5rem;
}
.text-avatar-md {
	font-size: 20px;
	width: 3.5rem;
	height: 3.5rem;
}
.text-avatar-sm {
	font-size: 15px;
	width: 2.25rem;
	height: 2.25rem;
}
.text-avatar-150 {
	font-size: 75px;
	width: 150px;
	height: 150px;
}
.text-avatar-100 {
	font-size: 50px;
	width: 100px;
	height: 100px;
}
.text-avatar-80 {
	font-size: 40px;
	width: 80px;
	height: 80px;
}
.text-avatar-70 {
	font-size: 30px;
	width: 70px;
	height: 70px;
}
.text-avatar-50 {
	font-size: 20px;
	width: 50px;
	height: 50px;
}
.text-avatar-40 {
    font-size: 16px;
	padding: 10px;
	width: 40px;
	height: 40px;
}

.profile-card .info {
	margin-top: 15px;
	padding: 15px;
	border-radius: 15px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-card .info p {
	margin: 8px 0;
	font-size: 14px;
	text-align: left;
}

.profile-card .info strong {
	display: inline-block;
	width: 80px;
}

.profile-pic {
	position: relative;
	display: inline-block;
}

.profile-pic img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	border: 3px solid rgba(255, 255, 255, 0.5);
}

.camera-btn {
	position: absolute;
	bottom: 5px;
	right: 5px;
	background: rgba(255, 255, 255, 0.8);
	border: none;
	border-radius: 50%;
	width: 32px;
	height: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	box-shadow: 0 4px 10px rgba(0,0,0,0.2);
	transition: background 0.3s;
}

.camera-btn:hover {
	background: rgba(255, 255, 255, 1);
}
.needsclick:hover {
	cursor: pointer;
}

/* Dashboard styling */
.analytics-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
    overflow: hidden;
    position: relative;
    height: 140px;
}

.analytics-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-color: var(--accent-color);
}

.analytics-card-body {
    padding: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.analytics-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.analytics-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--accent-color);
    background: var(--accent-bg);
    flex-shrink: 0;
}

.analytics-content {
    flex-grow: 1;
}

.analytics-value {
    font-size: 1.75rem;
    font-weight: 600;
    color: #111827;
    margin: 4px 0;
    line-height: 1;
}

.analytics-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin-bottom: 8px;
}

.analytics-trend {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.75rem;
    margin-top: auto;
}

.trend-positive {
    color: #059669;
}

.trend-negative {
    color: #dc2626;
}

.trend-neutral {
    color: #6b7280;
}

.analytics-progress {
    height: 3px;
    background: #f3f4f6;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 8px;
}

.analytics-progress-bar {
    height: 100%;
    background: var(--accent-color);
    border-radius: 2px;
    transition: width 0.6s ease;
}

.card-actions {
    position: absolute;
    top: 12px;
    right: 12px;
}

.action-btn {
    background: none;
    border: none;
    color: #d1d5db;
    font-size: 16px;
    cursor: pointer;
    padding: 2px;
    border-radius: 4px;
    transition: all 0.2s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: #f9fafb;
    color: #6b7280;
}

.dropdown-menu-modern {
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 4px;
    min-width: 160px;
}

.dropdown-item-modern {
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 13px;
    transition: all 0.15s ease;
}

.dropdown-item-modern:hover {
    background: #f3f4f6;
    color: #374151;
}

/* Card specific colors */
.card-warning { 
    --accent-color: #f59e0b; 
    --accent-bg: rgba(245, 158, 11, 0.1);
}
.card-info { 
    --accent-color: #0ea5e9; 
    --accent-bg: rgba(14, 165, 233, 0.1);
}
.card-success { 
    --accent-color: #10b981; 
    --accent-bg: rgba(16, 185, 129, 0.1);
}
.card-danger { 
    --accent-color: #ef4444; 
    --accent-bg: rgba(239, 68, 68, 0.1);
}
.card-primary { 
    --accent-color: #8b5cf6; 
    --accent-bg: rgba(139, 92, 246, 0.1);
}
.card-secondary { 
    --accent-color: #6b7280; 
    --accent-bg: rgba(107, 114, 128, 0.1);
}

.compact-summary {
    background: #f8fafc;
    border-radius: 6px;
    padding: 12px 16px;
    margin-top: 20px;
}

.summary-item {
    text-align: center;
    padding: 8px;
}

.summary-item h6 {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 4px;
    font-weight: 500;
}

.summary-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}
.input-error {
    color: #ff5b5b;
}
.gap-1 {
	gap: .25rem !important;
}
.gap-2 {
	gap: .5rem !important;
}
.gap-3 {
	gap: 1rem !important;
}
.gap-4 {
	gap: 1.5rem !important;
}
.gap-5 {
	gap: 3rem !important;
}