﻿/* Content Area */
.settings-content-panel {
    flex-grow: 1;
    padding: 30px;
    overflow-y: auto;
}

/* --- Section & Typography --- */




/* --- Cover Image Area --- */
.cover-image-wrapper {
    position: relative;
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 5px;
    transition: border-color 0.2s;
    margin-bottom: 24px;
    cursor: pointer;
}

.cover-image-wrapper:hover {
    border-color: var(--color-primary, #003657);
}

#postCoverImgPreview {
    width: 100%;
    height: 180px;
    background-color: #f0f0f0;
    border-radius: 6px;
    position: relative;
}

.cover-btn-overlay {
    margin-top: 10px;
    width: 100%;
}

/* --- Modern Table (User Groups) --- */
.modern-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    margin-bottom: 24px;
}

.modern-table th {
    background-color: #f8f9fa;
    text-align: left;
    padding: 12px 15px;
    font-weight: 600;
    color: #555;
    border-bottom: 2px solid #eee;
}

.modern-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    color: #333;
}

.modern-table tr:last-child td {
    border-bottom: none;
}

.modern-table tr:hover {
    background-color: #fbfbfb;
}

.table-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--color-primary, #003657);
}

/* --- Map & Admin Specifics --- */
.map-preview-container {
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

.input-group {
    display: flex;
    gap: 0;
}

.input-group input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

#settingsAddAuthorButton {
    width: 100px;
}
