/* InfaNeer Setup Wizard - Settings Page Styles */

/* Settings Content */
.settings-content {
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.page-header {
    margin-bottom: 2rem;
}

.page-title h1 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.page-title p {
    color: var(--text-secondary);
    margin: 0;
}

/* Settings Tabs */
.settings-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0;
}

.settings-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: -1px;
}

.settings-tab:hover {
    color: var(--text-primary);
    background: var(--bg-secondary);
}

.settings-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.settings-tab svg {
    opacity: 0.7;
}

.settings-tab.active svg {
    opacity: 1;
}

/* Settings Panels */
.settings-panel {
    display: none;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
}

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

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.panel-header h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.panel-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Configuration Grid */
.config-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.config-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.config-card.configured {
    border-color: var(--success-color);
}

.config-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-color);
}

.config-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--bg-primary);
    border-radius: 8px;
    color: var(--primary-color);
}

.config-card-header h3 {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.config-status {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.config-status.configured {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.config-status.not-configured {
    background: rgba(156, 163, 175, 0.1);
    color: var(--text-secondary);
}

.config-card-body {
    padding: 1rem;
}

.no-config {
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
}

.config-details {
    margin: 0;
}

.config-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.config-item:last-child {
    border-bottom: none;
}

.config-item dt {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.config-item dd {
    margin: 0;
    color: var(--text-primary);
    font-size: 0.85rem;
    text-align: right;
    word-break: break-all;
    max-width: 60%;
}

.config-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 6px;
    font-size: 0.85rem;
}

.meta-label {
    color: var(--text-secondary);
}

.meta-value {
    color: var(--text-primary);
    font-weight: 500;
}

.config-actions {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Webhook List */
.webhook-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.webhook-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.webhook-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.webhook-url {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: var(--bg-tertiary);
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    word-break: break-all;
}

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

/* Export / Import Sections */
.export-section,
.import-section,
.backup-section,
.restore-section,
.schedule-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.export-section:last-child,
.import-section:last-child,
.backup-section:last-child,
.restore-section:last-child,
.schedule-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.export-section h3,
.import-section h3,
.backup-section h3,
.restore-section h3,
.schedule-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
}

.export-section > p,
.import-section > p,
.backup-section > p,
.restore-section > p,
.schedule-section > p {
    color: var(--text-secondary);
    margin: 0 0 1.5rem 0;
    font-size: 0.9rem;
}

.export-form,
.import-form,
.backup-form,
.restore-form,
.schedule-form {
    max-width: 500px;
}

/* Form Styles */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="number"],
.form-group input[type="file"],
.form-group select {
    width: 100%;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group input::placeholder {
    color: var(--text-tertiary);
}

.form-group input[type="file"] {
    padding: 0.5rem;
}

.form-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.checkbox-inline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-inline input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.checkbox-inline label {
    margin-bottom: 0;
    font-weight: 400;
}

/* Destination Options */
.destination-options {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
}

.btn-icon {
    padding: 0.5rem;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.btn-icon:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}

.empty-state svg {
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.empty-state p {
    margin: 0 0 1.5rem 0;
}

/* Error Message */
.error-message {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--error-color);
    border-radius: 8px;
    color: var(--error-color);
}

/* Loading Spinner */
.config-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: var(--text-secondary);
    gap: 1rem;
}

.loading-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 1000;
}

.toast {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: slideIn 0.3s ease;
}

.toast-success {
    border-color: var(--success-color);
    background: rgba(16, 185, 129, 0.1);
}

.toast-error {
    border-color: var(--error-color);
    background: rgba(239, 68, 68, 0.1);
}

.toast-warning {
    border-color: var(--warning-color);
    background: rgba(245, 158, 11, 0.1);
}

.toast-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 0;
    line-height: 1;
}

.toast-close:hover {
    color: var(--text-primary);
}

.toast.fade-out {
    animation: fadeOut 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .settings-content {
        padding: 1rem;
    }

    .settings-tabs {
        flex-wrap: wrap;
    }

    .settings-tab {
        flex: 1;
        justify-content: center;
        padding: 0.5rem 0.75rem;
    }

    .settings-tab span:not(.settings-tab svg) {
        display: none;
    }

    .config-grid {
        grid-template-columns: 1fr;
    }

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

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

/* Setup Wizard Tab Styles */
.setup-status-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 24px;
}

.setup-status-card.complete {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.05);
}

.setup-status-card.complete .status-icon svg {
    stroke: #22c55e;
}

.setup-status-card.incomplete {
    border-color: #f59e0b;
    background: rgba(245, 158, 11, 0.05);
}

.setup-status-card.incomplete .status-icon svg {
    stroke: #f59e0b;
}

.status-icon {
    flex-shrink: 0;
}

.status-info h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 600;
}

.status-info p {
    margin: 0;
    color: var(--text-secondary);
}

.setup-checklist {
    margin-bottom: 32px;
}

.setup-checklist h3 {
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 600;
}

.checklist-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.checklist-item.configured {
    border-color: rgba(34, 197, 94, 0.3);
}

.checklist-item.configured .checklist-icon svg {
    stroke: #22c55e;
}

.checklist-item.required {
    border-color: rgba(245, 158, 11, 0.3);
}

.checklist-item.required .checklist-icon svg {
    stroke: #f59e0b;
}

.checklist-item.optional {
    opacity: 0.7;
}

.checklist-item.optional .checklist-icon svg {
    stroke: var(--text-secondary);
}

.checklist-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.checklist-name {
    font-weight: 500;
}

.checklist-status {
    font-size: 12px;
    color: var(--text-secondary);
}

.setup-actions {
    text-align: center;
    padding-top: 16px;
}

.btn-large {
    padding: 14px 28px;
    font-size: 16px;
}

.setup-hint {
    margin-top: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Webhook Sections */
.webhook-section {
    margin-bottom: 32px;
}

.webhook-section h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
}

.section-description {
    margin: 0 0 16px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.webhook-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 12px;
}

.webhook-item.primary {
    border-color: var(--primary-color);
    background: rgba(59, 130, 246, 0.05);
}

.webhook-info h4 {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: 600;
}

.webhook-description {
    margin: 0 0 8px 0;
    font-size: 12px;
    color: var(--text-secondary);
}

.webhook-url {
    display: block;
    font-size: 12px;
    padding: 8px 12px;
    background: var(--card-bg);
    border-radius: 4px;
    word-break: break-all;
    color: var(--text-primary);
}

.webhook-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    margin-left: 12px;
}

.btn-icon {
    padding: 8px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.btn-icon:hover {
    background: var(--surface-color);
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 48px 24px;
    color: var(--text-secondary);
}

.empty-state svg {
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-state h3 {
    margin: 0 0 8px 0;
    color: var(--text-primary);
}

.empty-state p {
    margin: 0 0 16px 0;
}

/* Error message */
.error-message {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    color: #ef4444;
}

/* Config Card Actions */
.config-card-actions {
    display: flex;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    margin-top: 12px;
}

.config-card-actions .btn {
    flex: 1;
    justify-content: center;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-primary);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    margin: 0;
    font-size: 18px;
}

.modal-body {
    padding: 24px;
}

.modal-body .form-group {
    margin-bottom: 16px;
}

.modal-body .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 14px;
}

.modal-body .form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.modal-body .form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid var(--border-color);
}

/* Webhook Edit Section */
.webhook-edit-section {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.webhook-edit-section h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
}

.webhook-edit-section .form-group {
    margin-bottom: 16px;
}

.webhook-edit-section .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 14px;
}

.webhook-edit-section .form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    background: var(--card-bg);
    color: var(--text-primary);
}

.webhook-edit-section .form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.webhook-edit-section .btn-primary {
    margin-top: 8px;
}

/* ==================== Config Subsection Styles ====================  */

.config-subsection {
    margin-top: 1.5rem;
    display: block;
}

.config-subsection h4 {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-icon {
    vertical-align: middle;
    flex-shrink: 0;
}

.config-subsection-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.hint-text {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.4;
}

.config-meta-info {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.config-meta-info span {
    color: var(--text-primary);
    font-weight: 500;
}

/* ==================== Radio Options ====================  */

.storage-mode-section {
    margin-bottom: 1rem;
}

.radio-options-wrapper {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    flex: 1;
    min-width: 200px;
    transition: all 0.2s ease;
}

.radio-option:hover {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.05);
}

.radio-option input[type="radio"] {
    margin-top: 0.25rem;
    accent-color: var(--primary-color);
    cursor: pointer;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.radio-label {
    font-weight: 600;
    color: var(--text-primary);
}

.radio-description {
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ==================== Host Groups List ====================  */

.host-groups-list {
    max-height: 280px;
    overflow-y: auto;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.375rem;
    background: var(--bg-secondary);
}

.host-groups-list::-webkit-scrollbar {
    width: 6px;
}

.host-groups-list::-webkit-scrollbar-track {
    background: transparent;
}

.host-groups-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
}

.host-groups-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

.host-group-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5625rem 0.75rem;
    margin: 0.125rem 0;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.15s ease;
    user-select: none;
}

.host-group-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.host-group-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
    cursor: pointer;
    flex-shrink: 0;
    margin: 0;
}

.host-group-item span {
    font-size: 0.8rem;
    color: var(--text-primary);
    line-height: 1.3;
}

/* ==================== Info Table ====================  */

.info-table {
    width: 100%;
    font-size: 0.8rem;
    border-collapse: collapse;
    margin: 0;
}

.info-table thead {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.info-table th {
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
}

.info-table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

.info-table tbody tr:last-child td {
    border-bottom: none;
}

.table-monospace {
    font-family: monospace;
    font-size: 0.75rem;
}

/* ==================== Not Configured Message ====================  */

.not-configured-msg {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--warning-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.not-configured-msg svg {
    flex-shrink: 0;
    stroke: var(--warning-color);
}

.not-configured-msg a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.not-configured-msg a:hover {
    text-decoration: underline;
}

/* ==================== Playbook Logs Section ====================  */

.logs-inputs-wrapper {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.logs-inputs-wrapper .form-group {
    flex: 1;
    min-width: 180px;
}

.logs-button-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logs-status-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ==================== Button Sizes ====================  */

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-large {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
}
