/* User dashboard styles */
.nsl-dashboard {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.nsl-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.nsl-header h1 {
    font-size: 28px;
    margin: 0 0 10px;
    color: #333;
}

.nsl-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
    border-bottom: 1px solid #ddd;
}

.nsl-tab {
    padding: 10px 20px;
    background: #f5f5f5;
    border-radius: 5px 5px 0 0;
    text-decoration: none;
    color: #666;
    transition: all 0.2s;
}

.nsl-tab:hover {
    background: #e9e9e9;
    color: #333;
}

.nsl-tab.active {
    background: #2eacce;
    color: #fff;
}

.badge {
    display: inline-block;
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 0px 6px;
    font-size: 11px;
    margin-left: 5px;
}

.nsl-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.nsl-card-header {
    padding: 15px 20px;
    background: #f9f9f9;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nsl-card-header i {
    font-size: 20px;
    color: #2eacce;
}

.nsl-card-header h3 {
    margin: 0;
    flex: 1;
    font-size: 18px;
}

.nsl-count {
    background: #2eacce;
    color: #fff;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 12px;
}

.nsl-card-body {
    padding: 20px;
}

.nsl-field {
    margin-bottom: 15px;
}

.nsl-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
}

.nsl-field select {
    width: 100%;
    max-width: 300px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.nsl-note {
    margin-top: 15px;
    padding: 10px;
    background: #f0f7ff;
    border-left: 3px solid #2eacce;
    font-size: 12px;
    color: #666;
}

.nsl-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.nsl-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.nsl-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.nsl-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .nsl-slider {
    background-color: #2eacce;
}

input:checked + .nsl-slider:before {
    transform: translateX(26px);
}

.nsl-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #2eacce;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.nsl-button-primary:hover {
    background: #2493b0;
}

.nsl-button-secondary {
    background: #e2e8f0;
    color: #4a5568;
}

.nsl-button-secondary:hover {
    background: #cbd5e0;
}

.nsl-users-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nsl-user-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.nsl-user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.nsl-user-info {
    flex: 1;
}

.nsl-user-name {
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
}

.nsl-user-name:hover {
    color: #2eacce;
}

.nsl-user-meta {
    font-size: 11px;
    color: #888;
}

.nsl-unfollow-btn {
    padding: 5px 15px;
    background: #d9534f;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.nsl-unfollow-btn:hover {
    background: #c9302c;
}

.nsl-empty {
    text-align: center;
    padding: 40px;
    color: #999;
}

.nsl-empty i {
    font-size: 48px;
    margin-bottom: 15px;
}

.nsl-pagination {
    margin-top: 20px;
    display: flex;
    gap: 5px;
    justify-content: center;
}

.nsl-pagination a {
    padding: 5px 10px;
    background: #f5f5f5;
    border-radius: 3px;
    text-decoration: none;
    color: #333;
}

.nsl-pagination a.active {
    background: #2eacce;
    color: #fff;
}

.nsl-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 10px;
}
.stat-item {
    text-align: center;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 12px;
}
.stat-value {
    font-size: 28px;
    font-weight: bold;
    color: #2eacce;
}
.stat-label {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.nsl-dashboard {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Open Sans', sans-serif;
}
.nsl-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}
.nsl-header h1 {
    font-size: 28px;
    margin: 0 0 10px 0;
    color: var(--white);
}
.nsl-header p {
    color: var(--white-60);
    margin: 0;
}
.nsl-tabs {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
    border-bottom: 1px solid #ddd;
}
.nsl-tab {
    padding: 10px 20px;
    background: color: var(--white-60);
    border-radius: 5px 5px 0 0;
    text-decoration: none;
    color: #666;
    transition: all 0.2s;
}
.nsl-tab:hover {
    background: #e9e9e9;
    color: #333;
}
.nsl-tab.active {
    background: #2eacce;
    color: #fff;
}
.badge {
    display: inline-block;
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 0px 6px;
    font-size: 11px;
    margin-left: 5px;
}
.nsl-card {
    background: color: var(--white-60);
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}
.nsl-card-header {
    padding: 15px 20px;
    background: color: var(--white-60);
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    gap: 10px;
}
.nsl-card-header i {
    font-size: 20px;
    color: #2eacce;
}
.nsl-card-header h3 {
    margin: 0;
    flex: 1;
    font-size: 18px;
}
.nsl-card-body {
    padding: 20px;
}
.nsl-field {
    margin-bottom: 15px;
}
.nsl-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--white-60);
}
.nsl-field select {
    width: 100%;
    max-width: 300px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.nsl-note {
    margin-top: 15px;
    padding: 10px;
    background: #f0f7ff;
    border-left: 3px solid #2eacce;
    font-size: 12px;
    color: #666;
}
.nsl-note i {
    color: #2eacce;
    margin-right: 5px;
}
.nsl-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}
.nsl-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.nsl-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}
.nsl-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}
input:checked + .nsl-slider {
    background-color: #2eacce;
}
input:checked + .nsl-slider:before {
    transform: translateX(26px);
}
.nsl-form-actions {
    text-align: center;
    margin-top: 30px;
}
.nsl-button {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    border: none;
}
.nsl-button-primary {
    background: #2eacce;
    color: #fff;
}
.nsl-button-primary:hover {
    background: #2493b0;
}
.nsl-users-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.nsl-user-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-bottom: 1px solid #eee;
}
.nsl-user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.nsl-user-info {
    flex: 1;
}
.nsl-user-name {
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    display: block;
}
.nsl-user-name:hover {
    color: #2eacce;
}
.nsl-user-meta {
    font-size: 11px;
    color: #888;
}
.nsl-unfollow-btn {
    padding: 5px 15px;
    background: #d9534f;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.nsl-unfollow-btn:hover {
    background: #c9302c;
}
.nsl-empty {
    text-align: center;
    padding: 40px;
    color: #999;
}
.nsl-empty i {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
}
.nsl-small {
    font-size: 12px;
    margin-top: 10px;
}
.nsl-pagination {
    margin-top: 20px;
    display: flex;
    gap: 5px;
    justify-content: center;
}
.nsl-pagination a {
    padding: 5px 10px;
    background: #f5f5f5;
    border-radius: 3px;
    text-decoration: none;
    color: #333;
}
.nsl-pagination a.active {
    background: #2eacce;
    color: #fff;
}
.nsl-warning {
    text-align: center;
    padding: 40px;
    background: #fef7e0;
    border: 1px solid #f0c36d;
    border-radius: 8px;
}
.nsl-warning i {
    font-size: 48px;
    color: #f0ad4e;
    margin-bottom: 15px;
    display: block;
}

.nsl-tab-content {
    color: var(--white);
}
.nsl-subscription-details {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}
.nsl-subscription-details h4 {
    margin: 0 0 10px;
    font-size: 14px;
    color: var(--white);
}
.nsl-subscription-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.nsl-subscription-details li {
    padding: 5px 0;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.nsl-subscription-details li i {
    width: 20px;
    color: #2eacce;
}
.nsl-subscription-details li span.active {
    color: #5cb85c;
    font-weight: bold;
}
.nsl-subscription-details li span.inactive {
    color: #d9534f;
}
@media (max-width: 768px) {
    .nsl-dashboard {
        padding: 10px;
    }
    .nsl-tab {
        padding: 8px 12px;
        font-size: 12px;
    }
    .nsl-user-item {
        flex-wrap: wrap;
    }
    .nsl-unfollow-btn {
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .nsl-tab {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .nsl-user-item {
        flex-wrap: wrap;
    }
    
    .nsl-unfollow-btn {
        width: 100%;
    }
}