/* Settings Tab Icons Styling */

/* Style for FontAwesome icons in settings tabs */
.tk-area-settings .tk-tab .tk-nav ul li i {
    margin-right: 8px;
    font-size: 14px;
    width: 18px;
    text-align: center;
    display: inline-block;
    opacity: 0.8;
    transition: all 0.3s ease;
}

/* Active tab icon */
.tk-area-settings .tk-tab .tk-nav ul li.tk-active i {
    opacity: 1;
    color: #667eea;
}

/* Hover effect */
.tk-area-settings .tk-tab .tk-nav ul li:hover i {
    opacity: 1;
    transform: scale(1.1);
}

/* Make tabs flex containers for better alignment */
.tk-area-settings .tk-tab .tk-nav ul li {
    display: flex !important;
    align-items: center !important;
    padding: 12px 20px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    border-radius: 8px !important;
    margin-bottom: 5px !important;
}

/* Add colored icons for each tab */
#tab-chat i { color: #667eea; }
#tab-messages i { color: #764ba2; }
#tab-admin i { color: #f093fb; }
#tab-notifications i { color: #ffa502; }
#tab-users i { color: #05c46b; }
#tab-design i { color: #ff6348; }
#tab-various i { color: #00d2d3; }

/* RTL Support */
[dir="rtl"] .tk-area-settings .tk-tab .tk-nav ul li i {
    margin-right: 0;
    margin-left: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .tk-area-settings .tk-tab .tk-nav ul li i {
        font-size: 16px;
        margin-right: 6px;
    }
}