.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #060513;
}

.settings-container {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.settings-sidebar {
    width: 240px;
    background-color: #08071b;
    border-right: 1px solid #1f2937;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    overflow-y: auto;
    animation: slideInRight 0.5s ease-out;
}

.settings-sidebar-title {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1.5rem 1rem 1rem;
    color: #e5e7eb;
}

.settings-nav {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
}

.settings-nav-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.settings-nav-item:hover {
    color: #e5e7eb;
    background-color: rgba(31, 41, 55, 0.5);
}

.settings-nav-item.active {
    color: #ef4444;
    background-color: rgba(31, 41, 55, 0.8);
    border-left-color: #ef4444;
}

.settings-nav-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
}

.settings-sidebar-footer {
    margin-top: auto;
    padding: 1rem;
    border-top: 1px solid #1f2937;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.danger-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: whitesmoke;
    background-color: #0b0924;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 0.25rem;
    border: none;
    transition: all 0.3s ease;
}

.danger-link:hover {
    color: #ef4444;
    background-color: rgba(239, 68, 68, 0.1);
}

/* Settings Content */
.settings-content {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    background-color: #0b0924;
}

.settings-section {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.settings-section.active {
    display: block;
}

.settings-header {
    margin-bottom: 1.5rem;
}

.settings-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #e5e7eb;
}

.settings-description {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Settings Card */
.settings-card {
    background-color: #09081d;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-out;
}

.settings-card-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #1f2937;
}

.settings-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #e5e7eb;
}

.settings-card-content {
    padding: 1.5rem;
}

/* Form Elements */
.settings-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #e5e7eb;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
    padding: 0.625rem 0.75rem;
    background-color: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.375rem;
    color: #e5e7eb;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #ef4444;
    box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.3);
}

.form-textarea {
    min-height: 80px;
    resize: vertical;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

.form-help {
    font-size: 0.75rem;
    color: #9ca3af;
}

.form-actions {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 1rem;
}

.input-with-prefix {
    display: flex;
    align-items: center;
    background-color: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.375rem;
    overflow: hidden;
}

.input-prefix {
    padding: 0.625rem 0.75rem;
    background-color: #374151;
    color: #9ca3af;
    font-size: 0.875rem;
    white-space: nowrap;
}

.form-input.with-prefix {
    border: none;
    border-radius: 0;
}

/* Buttons */
.button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    gap: 0.5rem;
}

.button.small {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
}

.primary-button {
    background-color: #ef4444;
    color: #fff;
}

.primary-button:hover {
    background-color: #dc2626;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(220, 38, 38, 0.2);
}

.secondary-button {
    background-color: #1f2937;
    color: #e5e7eb;
    border: 1px solid #374151;
}

.secondary-button:hover {
    background-color: #374151;
    transform: translateY(-1px);
}

.danger-button {
    background-color: transparent;
    color: #ef4444;
    border: 1px solid #ef4444;
}

.danger-button:hover {
    background-color: rgba(239, 68, 68, 0.1);
    transform: translateY(-1px);
}

.button-group {
    display: flex;
    gap: 0.75rem;
}

.button-icon {
    width: 1rem;
    height: 1rem;
}

/* Profile Picture Upload */
.profile-picture-upload {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.profile-picture-preview {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #1f2937;
}

.profile-picture-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-picture-actions {
    flex: 1;
}

.profile-picture-help {
    margin-bottom: 1rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Banner Upload */
.banner-upload {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.banner-preview {
    width: 100%;
    height: 150px;
    border-radius: 0.375rem;
    overflow: hidden;
    border: 1px solid #1f2937;
}

.banner-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.banner-help {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Settings Options */
.settings-option {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #1f2937;
}

.settings-option:last-child {
    border-bottom: none;
}

.settings-option-info {
    flex: 1;
    margin-right: 1.5rem;
}

.settings-option-title {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    color: #e5e7eb;
}

.settings-option-description {
    font-size: 0.75rem;
    color: #9ca3af;
}

.settings-option-control {
    display: flex;
    align-items: center;
}

.settings-option-control.full-width {
    width: 100%;
    margin-top: 0.5rem;
}

.settings-option-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #1f2937;
}

/* Toggle Switch */
.toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #374151;
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: #e5e7eb;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.toggle-slider {
    background-color: #ef4444;
}

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

/* Session List */
.session-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.session-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #1f2937;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.session-item:hover {
    background-color: #374151;
}

.session-item.current {
    border: 1px solid #ef4444;
}

.session-info {
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: center;
}

.session-device {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.device-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #9ca3af;
}

.device-details {
    display: flex;
    flex-direction: column;
}

.device-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #e5e7eb;
}

.device-location {
    font-size: 0.75rem;
    color: #9ca3af;
}

.session-time {
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Theme Options */
.theme-options {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.theme-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-option:hover .theme-preview {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.theme-preview {
    width: 160px;
    height: 100px;
    border-radius: 0.375rem;
    overflow: hidden;
    border: 1px solid #1f2937;
    transition: all 0.3s ease;
}

.theme-preview-header {
    height: 20%;
    background-color: #1f2937;
}

.theme-preview-content {
    height: 80%;
    display: flex;
}

.theme-preview-sidebar {
    width: 30%;
    background-color: #111827;
}

.theme-preview-main {
    width: 70%;
    background-color: #0f172a;
}

.theme-preview.dark .theme-preview-header {
    background-color: #1f2937;
}

.theme-preview.dark .theme-preview-sidebar {
    background-color: #111827;
}

.theme-preview.dark .theme-preview-main {
    background-color: #0f172a;
}

.theme-preview.light .theme-preview-header {
    background-color: #f3f4f6;
}

.theme-preview.light .theme-preview-sidebar {
    background-color: #ffffff;
}

.theme-preview.light .theme-preview-main {
    background-color: #f9fafb;
}

.theme-preview.system .theme-preview-header {
    background: linear-gradient(to right, #1f2937 50%, #f3f4f6 50%);
}

.theme-preview.system .theme-preview-sidebar {
    background: linear-gradient(to right, #111827 50%, #ffffff 50%);
}

.theme-preview.system .theme-preview-main {
    background: linear-gradient(to right, #0f172a 50%, #f9fafb 50%);
}

.theme-option-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #e5e7eb;
}

.theme-selected-icon {
    width: 1rem;
    height: 1rem;
    color: #ef4444;
    display: none;
}

.theme-option.active .theme-selected-icon {
    display: block;
}

.theme-option.active .theme-preview {
    border-color: #ef4444;
}

/* Color Options */
.color-options {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-preview {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #1f2937;
    transition: all 0.3s ease;
}

.color-option:hover .color-preview {
    transform: scale(1.1);
}

.color-preview.red {
    background-color: #ef4444;
}

.color-preview.blue {
    background-color: #3b82f6;
}

.color-preview.green {
    background-color: #10b981;
}

.color-preview.purple {
    background-color: #8b5cf6;
}

.color-preview.orange {
    background-color: #f59e0b;
}

.color-option-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #e5e7eb;
}

.color-selected-icon {
    width: 1rem;
    height: 1rem;
    color: #ef4444;
    display: none;
}

.color-option.active .color-selected-icon {
    display: block;
}

.color-option.active .color-preview {
    border-color: #e5e7eb;
}

/* Range Slider */
.range-slider-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: #374151;
    outline: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ef4444;
    cursor: pointer;
    transition: all 0.3s ease;
}

.range-slider::-webkit-slider-thumb:hover {
    background: #dc2626;
    transform: scale(1.2);
}

.range-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ef4444;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.range-slider::-moz-range-thumb:hover {
    background: #dc2626;
    transform: scale(1.2);
}

.range-value {
    font-size: 0.875rem;
    color: #e5e7eb;
    min-width: 40px;
    text-align: right;
}

.font-size-preview {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: #1f2937;
    border-radius: 0.375rem;
}

.preview-text {
    color: #e5e7eb;
    font-size: 16px;
    line-height: 1.5;
}

/* Schedule Editor */
.schedule-editor {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-day {
    background-color: #1f2937;
    border-radius: 0.375rem;
    padding: 1rem;
}

.day-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.day-header h3 {
    font-size: 0.875rem;
    font-weight: 500;
    color: #e5e7eb;
}

.time-range {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.time-input {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.time-input label {
    font-size: 0.75rem;
    color: #9ca3af;
}

.time-input input {
    padding: 0.5rem;
    background-color: #374151;
    border: 1px solid #4b5563;
    border-radius: 0.25rem;
    color: #e5e7eb;
    font-size: 0.875rem;
}

.time-input input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.time-separator {
    color: #9ca3af;
    align-self: flex-end;
    margin-bottom: 0.5rem;
}

/* Connection Items */
.connection-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #1f2937;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.connection-item:hover {
    background-color: #374151;
}

.connection-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.connection-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #374151;
}

.connection-icon .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #e5e7eb;
}

.connection-icon.twitter {
    background-color: rgba(29, 161, 242, 0.2);
}

.connection-icon.twitter .icon {
    color: #1da1f2;
}

.connection-icon.youtube {
    background-color: rgba(255, 0, 0, 0.2);
}

.connection-icon.youtube .icon {
    color: #ff0000;
}

.connection-icon.twitch {
    background-color: rgba(145, 70, 255, 0.2);
}

.connection-icon.twitch .icon {
    color: #9146ff;
}

.connection-icon.discord {
    background-color: rgba(114, 137, 218, 0.2);
}

.connection-icon.discord .icon {
    color: #7289da;
}

.connection-icon.steam,
.connection-icon.xbox,
.connection-icon.playstation {
    background-color: rgba(255, 255, 255, 0.1);
}

.connection-details {
    display: flex;
    flex-direction: column;
}

.connection-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #e5e7eb;
}

.connection-status {
    font-size: 0.75rem;
    color: #9ca3af;
}

.connection-actions {
    display: flex;
    gap: 0.5rem;
}

/* Current Plan */
.current-plan {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.plan-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.plan-badge.premium {
    background-color: #ef4444;
    color: #fff;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 0.25rem;
}

.plan-price {
    font-size: 1rem;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.plan-renewal {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 1.5rem;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    width: 100%;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    width: 1rem;
    height: 1rem;
    color: #10b981;
}

.plan-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-method {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #1f2937;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.payment-method:hover {
    background-color: #374151;
}

.payment-method.default {
    border: 1px solid #ef4444;
}

.payment-method-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #374151;
}

.payment-method-icon .icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #e5e7eb;
}

.payment-method-details {
    display: flex;
    flex-direction: column;
}

.payment-method-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #e5e7eb;
}

.payment-method-expiry {
    font-size: 0.75rem;
    color: #9ca3af;
}

.payment-method-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.default-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    background-color: #ef4444;
    color: #fff;
}

.add-payment-method {
    margin-top: 1rem;
}

/* Billing History */
.billing-history {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.billing-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #1f2937;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.billing-item:hover {
    background-color: #374151;
}

.billing-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.billing-date {
    font-size: 0.875rem;
    font-weight: 500;
    color: #e5e7eb;
}

.billing-description {
    font-size: 0.75rem;
    color: #9ca3af;
}

.billing-amount {
    font-size: 0.875rem;
    font-weight: 600;
    color: #e5e7eb;
}

.billing-actions {
    display: flex;
    gap: 0.5rem;
}

.profile-customization {
    margin-top: 2rem;
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 0.75rem;
}

.frame-options,
.badge-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.frame-option,
.badge-option {
    width: 64px;
    height: 64px;
    border: 2px solid transparent;
    border-radius: 0.375rem;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.frame-option.selected,
.badge-option.selected {
    border-color: #ef4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.5);
}

.frame-thumbnail,
.badge-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.appearance-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.appearance-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    color: #e5e7eb;
    margin-bottom: 0.5rem;
}

.appearance-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.appearance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90px;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 0.5rem;
    padding: 0.5rem;
    transition: border-color 0.2s ease;
}

.appearance-item:hover {
    border-color: #374151;
    background-color: #111827;
}

.appearance-item.selected {
    border-color: #ef4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.3);
}

.appearance-image {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 0.375rem;
    margin-bottom: 0.5rem;
}

.appearance-label {
    font-size: 0.75rem;
    color: #e5e7eb;
}



/* Social Icons */
.social-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.25rem;
}

.social-icon.twitter {
    color: #1da1f2;
}

.social-icon.instagram {
    color: #e1306c;
}

.social-icon.youtube {
    color: #ff0000;
}

.social-icon.twitch {
    color: #9146ff;
}

.social-icon.facebook {
    color: #1877f2;
}

/* View More Link */
.view-more {
    margin-top: 1.5rem;
    text-align: center;
}

.view-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ef4444;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-more-link:hover {
    color: #dc2626;
    transform: translateX(5px);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .settings-container {
        flex-direction: column;
    }

    .settings-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #1f2937;
    }

    .settings-nav {
        flex-direction: row;
        overflow-x: auto;
        padding: 0.5rem;
    }

    .settings-nav-item {
        white-space: nowrap;
        border-left: none;
        border-bottom: 2px solid transparent;
    }

    .settings-nav-item.active {
        border-left-color: transparent;
        border-bottom-color: #ef4444;
    }

    .profile-picture-upload,
    .payment-method,
    .billing-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .payment-method-actions,
    .billing-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .connection-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .connection-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .theme-options,
    .color-options {
        justify-content: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .settings-sidebar {
        width: 200px;
    }
}

@media (min-width: 1025px) {
    .settings-content {
        padding: 2rem;
    }
}

.appearance-empty {
    color: #aaa;
    font-style: italic;
    padding: 12px;
}