/* ========================================
   Settings Pages Styles
======================================== */

/* Logo Preview */
.logo-preview {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 20px;
    background: var(--bg-secondary);
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-preview img {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
}

/* Info Items */
.info-item {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.info-item small {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.info-item p {
    font-weight: 600;
    color: var(--text-primary);
}

/* Fiscal Year Progress */
.fiscal-year-progress {
    text-align: right;
}

.fiscal-year-progress small {
    font-size: 12px;
}

/* Fiscal Years Table Badges */
.status-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

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

.status-badge.closed {
    background: rgba(100, 116, 139, 0.1);
    color: var(--secondary-color);
}

.status-badge.future {
    background: rgba(6, 182, 212, 0.1);
    color: var(--info-color);
}

/* Confirmation Checkboxes */
.modal-body .form-check {
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: 8px;
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 767px) {
    .logo-preview {
        min-height: 120px;
    }
}
