/* Admin Panel - 3-Column Layout Styles */
/* =========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #DC143C;
    --primary-dark: #B71C1C;
    --success-color: #4CAF50;
    --danger-color: #f44336;
    --warning-color: #ff9800;
    --info-color: #2196F3;
    
    --bg-primary: #f5f7fa;
    --bg-secondary: #ffffff;
    --bg-hover: #f0f0f0;
    
    --text-primary: #212121;
    --text-secondary: #757575;
    --text-light: #9e9e9e;
    
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    
    --header-height: 60px;
    --panel-left-width: 220px;
    --panel-middle-width: 522px;
    --panel-right-width: 348px;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
}

/* =========================================== */
/* Auth Screen */
/* =========================================== */

.auth-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.auth-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.auth-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.auth-card h1 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.auth-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.auth-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
}

.auth-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.auth-error {
    color: var(--danger-color);
    margin-top: 12px;
    font-size: 13px;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
}

.back-link:hover {
    color: var(--primary-color);
}

/* =========================================== */
/* Admin Panel Header */
/* =========================================== */

.admin-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-md);
    z-index: 1000;
}

.admin-header-content {
    height: 100%;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-header h1 {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-actions {
    display: flex;
    gap: 8px;
}

/* =========================================== */
/* 3-Column Layout */
/* =========================================== */

.admin-container {
    margin-top: var(--header-height);
    display: flex;
    height: calc(100vh - var(--header-height));
    overflow: hidden;
}

/* Left Panel: Categories */
.left-panel {
    width: var(--panel-left-width);
    background: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex-shrink: 0;
}

/* Middle Panel: Content List */
.middle-panel {
    flex: 6;
    min-width: 400px;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Right Panel: Form */
.right-panel {
    flex: 4;
    min-width: 300px;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* NEW: First Panel - Content List (left) */
.first-panel {
    flex: 6;
    min-width: 400px;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* NEW: Second Panel - Form (middle) */
.second-panel {
    flex: 4;
    min-width: 300px;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* NEW: Third Panel - Categories (right) */
.third-panel {
    width: var(--panel-left-width);
    background: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex-shrink: 0;
}

/* =========================================== */
/* Panel Headers */
/* =========================================== */

.panel-header {
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.panel-header h2 {
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.panel-header .header-actions {
    display: flex;
    gap: 6px;
}

.panel-footer {
    padding: 12px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
    flex-shrink: 0;
}

/* =========================================== */
/* Left Panel: Category List */
/* =========================================== */

.category-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px;
}

.category-item {
    padding: 10px 12px;
    margin-bottom: 4px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    font-size: 0.85rem;
}

.category-item i {
    color: var(--primary-color);
    width: 16px;
    flex-shrink: 0;
}

.category-item:hover {
    background: var(--bg-hover);
}

.category-item.active {
    background: var(--primary-color);
    color: white;
}

.category-item.active i {
    color: white;
}

.category-item .count {
    margin-left: auto;
    background: rgba(0,0,0,0.1);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
}

.category-item.active .count {
    background: rgba(255,255,255,0.2);
}

/* =========================================== */
/* Middle Panel: Content List */
/* =========================================== */

.search-box {
    position: relative;
    flex: 1;
    max-width: 300px;
}

.search-input {
    width: 100%;
    padding: 8px 32px 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.85rem;
}

.search-box i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.filter-bar {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
    display: flex;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.content-type-tabs {
    display: flex;
    gap: 4px;
    margin-right: auto;
}

.tab-btn {
    padding: 6px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: white;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s;
}

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

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

.filter-select {
    padding: 6px 10px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    min-width: 110px;
}

.content-list {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
}

.content-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    gap: 12px;
    align-items: center;
}

.content-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.content-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-color);
}

.content-item.active {
    border-color: var(--primary-color);
    background: #fff5f5;
}

.content-thumbnail {
    width: 80px;
    height: 45px;
    border-radius: 4px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--bg-hover);
}

.content-info {
    flex: 1;
    min-width: 0;
}

.content-title {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.content-meta {
    display: flex;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.content-badge {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.7rem;
}

.badge-type {
    background: #e3f2fd;
    color: #1976d2;
}

.badge-category {
    background: #f3e5f5;
    color: #7b1fa2;
}

.badge-featured {
    background: #fff3e0;
    color: #e65100;
}

.badge-weight {
    background: #ffd700;
    color: #b8860b;
    font-weight: 600;
}

.badge-weight.weight-default {
    background: #e0e0e0;
    color: #757575;
}

.content-badge-container {
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.featured-badge {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.featured-badge-placeholder {
    width: 24px;
    display: inline-block;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.content-actions {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
}

.action-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    transition: all 0.2s;
    font-size: 0.9rem;
}

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

.action-btn.delete:hover {
    color: var(--danger-color);
}

/* =========================================== */
/* Right Panel: Form */
/* =========================================== */

.content-form {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.form-group {
    margin-bottom: 14px;
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: start;
    gap: 12px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-primary);
    padding-top: 8px;
    text-align: right;
}

.form-group label.required::after {
    content: ' *';
    color: var(--danger-color);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.85rem;
    font-family: inherit;
}

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

.input-with-button {
    display: flex;
    gap: 8px;
    align-items: center;
    grid-column: 2;
}

.input-with-button .form-input {
    flex: 1;
}

.btn-check-duplicate {
    padding: 8px 12px;
    background: #4caf50;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-check-duplicate:hover {
    background: #45a049;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.btn-check-duplicate:active {
    transform: translateY(0);
}

.btn-check-duplicate i {
    font-size: 0.75rem;
}

/* Full-width form groups */
.form-group.full-width {
    grid-column: 1 / -1;
    display: block;
}

.form-group.full-width label {
    text-align: left;
    padding-top: 0;
    margin-bottom: 6px;
    display: block;
}

/* Special styling for exposure weight helper text */
.form-group small {
    display: block;
    color: #666;
    font-size: 0.75rem;
    margin-top: 6px;
    line-height: 1.4;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.85rem;
}

.checkbox-input {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.thumbnail-upload-area {
    border: 1px dashed var(--border-color);
    border-radius: 6px;
    padding: 12px;
}

.thumbnail-preview {
    position: relative;
    width: 280px;
    height: 158px;
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
    background: #f0f0f0;
}

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

.thumbnail-remove-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    background: var(--danger-color);
    color: white;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-actions {
    display: flex;
    gap: 8px;
    padding: 16px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
    flex-shrink: 0;
}

/* =========================================== */
/* Buttons */
/* =========================================== */

.btn-primary,
.btn-secondary,
.btn-danger,
.btn-info {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

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

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

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

.btn-secondary:hover {
    background: #e0e0e0;
}

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

.btn-danger:hover {
    background: #d32f2f;
}

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

.btn-small {
    padding: 6px 12px;
    font-size: 0.75rem;
}

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

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

/* =========================================== */
/* Modal */
/* =========================================== */

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

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.modal-header h2 {
    font-size: 1.1rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-secondary);
}

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

.modal-body {
    padding: 20px;
    overflow-y: auto;
}

.modal-body h3 {
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.settings-section {
    padding: 15px;
    background: var(--bg-primary);
    border-radius: 8px;
}

.settings-section h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.management-list {
    max-height: 300px;
    overflow-y: auto;
}

.management-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 8px;
    background: white;
}

.management-item-name {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.management-item-icon {
    font-size: 1.2rem;
}

.management-item.protected {
    background: #f5f5f5;
}

.management-item.protected .management-item-name {
    color: var(--text-secondary);
}

.management-item-with-order {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    cursor: move;
    transition: all 0.2s;
}

.management-item-with-order.dragging {
    opacity: 0.5;
}

.management-item-with-order.drag-over-top {
    border-top: 2px solid var(--primary-color);
}

.management-item-with-order.drag-over-bottom {
    border-bottom: 2px solid var(--primary-color);
}

.management-item-with-order .management-item {
    flex: 1;
    margin-bottom: 0;
}

.drag-handle {
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    cursor: grab;
    font-size: 0.9rem;
}

.drag-handle:active {
    cursor: grabbing;
}

.drag-handle:hover {
    color: var(--primary-color);
}

.order-controls {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.btn-order {
    width: 28px;
    height: 28px;
    padding: 0;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.btn-order:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-order:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.btn-order i {
    font-size: 0.7rem;
}

/* =========================================== */
/* Stats Grid */
/* =========================================== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.stat-card {
    background: var(--bg-primary);
    padding: 16px;
    border-radius: 8px;
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

/* =========================================== */
/* Utility */
/* =========================================== */

.no-data {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
}

.no-data i {
    font-size: 3rem;
    margin-bottom: 12px;
    opacity: 0.3;
}

.input-group {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.input-group .form-input {
    flex: 1;
}

/* =========================================== */
/* Scrollbar */
/* =========================================== */

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

/* =========================================== */
/* Duplicate Content Modal */
/* =========================================== */

.duplicate-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.2s ease;
}

.duplicate-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.3s ease;
}

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

.duplicate-modal-header.url-duplicate {
    background: #ffebee;
}

.duplicate-modal-header.url-duplicate h3 {
    color: #d32f2f;
}

.duplicate-modal-header.similar-title {
    background: #fff9e6;
}

.duplicate-modal-header.similar-title h3 {
    color: #f57c00;
}

.duplicate-modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #ff6b00;
    display: flex;
    align-items: center;
    gap: 8px;
}

.duplicate-modal-body {
    padding: 20px;
    max-height: calc(80vh - 80px);
    overflow-y: auto;
}

.duplicate-message {
    font-size: 1rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-weight: 500;
}

.duplicate-content-card {
    display: flex;
    gap: 12px;
    padding: 12px;
    border: 2px solid #ffe0cc;
    border-radius: 8px;
    background: #fff8f0;
    margin-bottom: 20px;
}

.duplicate-thumbnail {
    width: 120px;
    height: 68px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.duplicate-info {
    flex: 1;
    min-width: 0;
}

.duplicate-info h4 {
    margin: 0 0 8px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.duplicate-url {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 4px 0 8px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.duplicate-type-badge {
    display: inline-block;
    padding: 2px 8px;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-right: 4px;
}

.duplicate-category-badge {
    display: inline-block;
    padding: 2px 8px;
    background: #e0e0e0;
    color: var(--text-primary);
    border-radius: 4px;
    font-size: 0.75rem;
}

.duplicate-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.duplicate-actions .btn-secondary,
.duplicate-actions .btn-primary {
    padding: 10px 20px;
    min-width: 80px;
}

.similar-contents-list {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 16px;
}

.similar-contents-list .duplicate-content-card {
    margin-bottom: 12px;
}

.similar-contents-list .duplicate-content-card:last-child {
    margin-bottom: 0;
}

/* =========================================== */
/* Success Toast */
/* =========================================== */

.success-toast {
    position: fixed;
    top: 80px;
    right: 20px;
    background: #4caf50;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10001;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
}

.success-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
}

.toast-message {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* =========================================== */
/* Responsive Design */
/* =========================================== */

/* 태블릿 및 작은 화면: 레이블을 위로 이동 */
@media (max-width: 1024px) {
    .form-group {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .form-group label {
        text-align: left;
        padding-top: 0;
    }

    .input-with-button {
        grid-column: 1;
    }
}
