/* App container - always visible, no auth needed */
.app-container {
    opacity: 1;
}

.platform-icons {
    display: flex;
    gap: 8px;
    margin-left: auto;
    padding-left: 16px;
}

.platform-icon {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.platform-icon:hover {
    opacity: 1;
}

.platform-icon i {
    font-size: 14px;
    color: #888;
}

/* Updated resolution styles */
.resolution-option {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
    font-size: 14px;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 4px;
}

.resolution-option:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.resolution-option.selected {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid var(--accent-color);
}

.resolution-option .resolution-name {
    flex: 1;
    font-weight: 500;
    color: #fff;
}

.resolution-categories {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 4px;
}

.category-header {
    display: none;
}

.category-content {
    display: flex;
    flex-direction: column;
}

/* Updated section header styles */
.settings-section .section-header {
    padding: var(--space-s) 0;
    margin-bottom: var(--space-m);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    position: relative;
}

.settings-section .section-header h5 {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

.settings-section .section-header::after {
    content: '\f078';
    /* chevron-down */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 12px;
    color: #888;
    transition: transform 0.2s ease;
    margin-left: 8px;
}

.settings-section.collapsed .section-header::after {
    transform: rotate(-90deg);
    /* Point right when collapsed */
}

.settings-section .section-content {
    transition: max-height 0.3s ease, opacity 0.3s ease;
    max-height: 2000px;
    opacity: 1;
    overflow: hidden;
}

.settings-section.collapsed .section-content {
    max-height: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
}

/* Noise controls */
.noise-controls {
    padding: 8px 0;
}

.noise-controls .form-group {
    margin-bottom: 16px;
}

.noise-controls .select-control {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #333;
    border-radius: 6px;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 14px;
}

.noise-controls .select-control:focus {
    outline: none;
    border-color: var(--accent-color);
}

.noise-options {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #333;
}

.noise-options .adjustment-row {
    margin-bottom: 8px;
}

.noise-options .slider-container {
    margin-bottom: 16px;
}

/* Close upload zone button */
.close-upload-zone {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.close-upload-zone:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

/* Subsection styles */
.settings-subsection {
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.subsection-header {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease;
}

/* Removed hover effect for subsection header */
/* .subsection-header:hover {
    background-color: rgba(255, 255, 255, 0.08);
} */

.subsection-header h6 {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

.subsection-header::after {
    content: '\f078';
    /* chevron-down */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 11px;
    color: #888;
    transition: transform 0.2s ease;
}

.settings-subsection.collapsed .subsection-header::after {
    transform: rotate(-90deg);
    /* Point right when collapsed */
}

.subsection-content {
    padding: 16px;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    max-height: 2000px;
    opacity: 1;
    overflow: hidden;
}

.settings-subsection.collapsed .subsection-content {
    max-height: 0;
    opacity: 0;
    padding: 0 16px;
}

/* Header buttons container */
.header-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.header-buttons .btn {
    font-size: 12px;
    padding: 4px 8px;
}

/* Watermark styles */
.upload-watermark-area {
    border: 2px dashed #444;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.02);
}

.upload-watermark-area:hover {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
}

.upload-watermark-area.dragover {
    border-color: var(--accent-color);
    background: rgba(67, 160, 71, 0.1);
}

.upload-watermark-area i {
    font-size: 32px;
    color: #888;
    margin-bottom: 12px;
    display: block;
}

.upload-watermark-area p {
    color: #fff;
    margin: 8px 0 4px 0;
    font-weight: 500;
}

.upload-watermark-area small {
    color: #888;
    font-size: 12px;
}

.watermark-preview {
    border: 1px solid #333;
    border-radius: 8px;
    padding: 12px;
    margin: 16px 0;
    background: rgba(255, 255, 255, 0.02);
}

.watermark-preview img {
    max-width: 100%;
    max-height: 80px;
    border-radius: 4px;
    display: block;
    margin: 0 auto 8px auto;
}

.watermark-info {
    text-align: center;
}

.watermark-info span {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
}

.watermark-controls {
    margin-top: 16px;
}

.watermark-help {
    margin-top: 16px;
    padding: 12px;
    background: rgba(67, 160, 71, 0.1);
    border-radius: 6px;
    border-left: 3px solid var(--accent-color);
}

.watermark-help small {
    color: #a8e6cf;
    font-size: 12px;
    line-height: 1.4;
}

.watermark-help i {
    margin-right: 6px;
    color: var(--accent-color);
}

/* Text layer styling improvements */
.text-layers-list {
    margin-bottom: 16px;
}

.empty-text-layers {
    padding: 24px 16px;
    color: #666;
    text-align: center;
    font-style: italic;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    border: 1px dashed #333;
}

.text-layer-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    margin-bottom: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #333;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.text-layer-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #444;
}

.text-layer-item.selected {
    background: rgba(67, 160, 71, 0.1);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 1px rgba(67, 160, 71, 0.3);
}

.text-layer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.text-layer-visibility {
    color: #888;
    cursor: pointer;
    transition: color 0.2s ease;
    font-size: 14px;
}

.text-layer-visibility:hover {
    color: #fff;
}

.text-layer-visibility.hidden {
    color: #444;
}

.text-layer-preview {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.text-layer-actions {
    display: flex;
    gap: 8px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.text-layer-item:hover .text-layer-actions {
    opacity: 1;
}

.text-layer-actions button {
    background: transparent;
    border: none;
    color: #888;
    padding: 6px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-layer-actions button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.text-layer-actions .delete-btn:hover {
    background: rgba(244, 67, 54, 0.2);
    color: #ff6b6b;
}

/* Text editor styling improvements */
.text-editor {
    margin-top: 16px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    /* Remove fixed height constraints */
    height: auto;
    min-height: auto;
    max-height: none;
}

.text-editor .form-group {
    margin-bottom: 16px;
}

.text-editor .form-group:last-child {
    margin-bottom: 0;
}

.text-editor label {
    display: block;
    margin-bottom: 6px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.text-editor textarea,
.text-editor select {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    color: #fff;
    padding: 8px 12px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

/* Color input styling to match other color inputs */
.text-editor input[type="color"] {
    width: 100%;
    height: 44px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.2s ease;
    padding: 4px;
}

.text-editor textarea:focus,
.text-editor select:focus,
.text-editor input[type="color"]:focus {
    outline: none;
    border-color: var(--accent-color);
}

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

/* Match the exact styling of other adjustment rows */
.text-editor .adjustment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.text-editor .adjustment-row label {
    margin: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.text-editor .value-display {
    color: #888;
    font-size: 12px;
    font-weight: 500;
    min-width: 50px;
    text-align: right;
}

/* Match the exact slider container styling */
.text-editor .slider-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.text-editor .slider-container input[type="range"] {
    flex: 1;
    height: 4px;
    background: #333;
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.text-editor .slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--accent-color);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.text-editor .slider-container input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.text-editor .slider-container input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--accent-color);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease;
}

.text-editor .slider-container input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.1);
}

.text-align-buttons,
.text-style-buttons {
    display: flex;
    gap: 8px;
}

.text-align-buttons button,
.text-style-buttons button {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 6px;
    color: #fff;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

.text-align-buttons button:hover,
.text-style-buttons button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #444;
}

.text-align-buttons button.active,
.text-style-buttons button.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}

.text-position-controls {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.text-position-controls button {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 6px;
    color: #fff;
    padding: 6px 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
}

.text-position-controls button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #444;
}

.position-layout {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 8px;
}

.quick-position-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 4px;
    aspect-ratio: 1;
    max-width: 120px;
    flex-shrink: 0;
}

.text-position-controls {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.quick-pos-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 6px;
    color: #888;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    min-height: 0;
    padding: 0;
}

.quick-pos-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #444;
    color: #fff;
}

.quick-pos-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}

/* Checkbox styling improvements to match design exactly */
.text-editor .checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.text-editor .checkbox-container input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent-color);
    cursor: pointer;
}

.text-editor .checkbox-container input[type="checkbox"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.text-editor .checkbox-container label {
    margin: 0;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.text-editor .checkbox-container input[type="checkbox"]:disabled+label {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Color input wrapper to match other color inputs */
.text-editor .color-input-wrapper {
    position: relative;
    margin-bottom: 0;
}

.text-editor .color-input-wrapper input[type="color"] {
    width: 100%;
    height: 44px;
    padding: 4px;
    border: 1px solid #333;
    border-radius: 6px;
    background: #1a1a1a;
    cursor: pointer;
}

/* Shadow and background options - completely remove extra styling */
.text-editor #text-shadow-options,
.text-editor #text-bg-options {
    margin-top: 16px;
    display: none;
    /* Remove all extra padding and backgrounds */
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

.text-editor #text-shadow-options.visible,
.text-editor #text-bg-options.visible {
    display: block;
}

/* Ensure no extra styling on any shadow/background elements */
.text-editor .shadow-options,
.text-editor .background-options {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
}

/* Form help text styling */
.text-editor .form-help {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #666;
    font-style: italic;
    line-height: 1.3;
}

/* Panning controls styling */
.panning-controls {
    margin-bottom: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid #333;
}

.panning-controls.hidden {
    display: none;
}

/* Form help text for all sections */
.form-help {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #666;
    font-style: italic;
    line-height: 1.3;
}

/* Hide the button row at the bottom */
.text-editor .button-row {
    display: none;
}

/* Subsection title styling to match other sections */
.text-editor .subsection-title {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #333;
}

/* Divider styling */
.text-editor .divider {
    height: 1px;
    background: #333;
    margin: 16px 0;
    border: none;
}

/* Dropdown styles */
.dropdown-container {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    position: relative;
}

.dropdown-arrow {
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.2s ease;
}

.dropdown-container.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 130%;
    right: -50px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    min-width: 240px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.dropdown-container.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.dropdown-item:first-child {
    border-radius: 8px 8px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 8px 8px;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-item i {
    width: 16px;
    text-align: center;
    opacity: 0.8;
}

.dropdown-item:hover i {
    opacity: 1;
}

/* Layout Grid Styles */
.layout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.layout-item {
    position: relative;
    border: 2px solid #333;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.layout-item:hover {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
}

.layout-item.selected {
    border-color: var(--accent-color);
    background: rgba(67, 160, 71, 0.1);
}

.layout-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 6px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.layout-item:hover img,
.layout-item.selected img {
    opacity: 1;
}

.layout-item .layout-name {
    font-size: 11px;
    color: #fff;
    font-weight: 500;
    line-height: 1.2;
}

/* Image Slots Styles */
.image-slots-container {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.slots-title {
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 12px 0;
}

.image-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 12px;
}

.image-slot {
    position: relative;
    border: 2px dashed #444;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.02);
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-slot:hover {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.05);
}

.image-slot.selected {
    border-color: var(--accent-color);
    border-style: solid;
    background: rgba(67, 160, 71, 0.1);
}

.image-slot.filled {
    border-style: solid;
    border-color: #666;
    padding: 4px;
}

.image-slot.filled:hover {
    border-color: var(--accent-color);
}

.image-slot.filled.selected {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(67, 160, 71, 0.3);
}

.slot-preview {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 6px;
}

.slot-label {
    font-size: 11px;
    color: #aaa;
    font-weight: 500;
    text-align: center;
}

.image-slot.filled .slot-label {
    color: #fff;
}

.slot-empty-icon {
    font-size: 24px;
    color: #666;
    margin-bottom: 6px;
}

.image-slot:hover .slot-empty-icon {
    color: var(--accent-color);
}

.slot-actions {
    position: absolute;
    top: 4px;
    right: 4px;
    display: flex;
    gap: 4px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.image-slot.filled:hover .slot-actions {
    opacity: 1;
}

.slot-action {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 4px;
    color: #fff;
    padding: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slot-action:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.slot-action.remove:hover {
    background: rgba(244, 67, 54, 0.8);
}

.slot-action.replace:hover {
    background: rgba(33, 150, 243, 0.8);
}

.slot-action.duplicate:hover {
    background: rgba(76, 175, 80, 0.8);
}

/* Drag and drop feedback */
.image-slot.dragging {
    opacity: 0.5;
    transform: scale(0.95);
    border-color: var(--accent-color);
}

.image-slot.drag-over {
    border-color: var(--accent-color);
    background: rgba(67, 160, 71, 0.2);
    transform: scale(1.05);
}

/* Context menu styles */
.slot-context-menu {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.context-menu-item {
    transition: background-color 0.2s ease;
}

/* Duplicate modal styles */
.duplicate-slot-modal {
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.duplicate-option:hover {
    background: rgba(67, 160, 71, 0.8) !important;
    transform: scale(1.05);
}

.cancel-duplicate:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #888 !important;
}

/* App Marketing Search Results */
.app-search-results {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 300px;
    overflow-y: auto;
}

.app-search-results.hidden {
    display: none;
}

.app-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.app-result-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.app-result-item .app-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.app-result-item .app-info {
    flex: 1;
    min-width: 0;
}

.app-result-item .app-name {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.app-result-item .app-dev {
    color: #888;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.loading-spinner,
.error-msg,
.no-results {
    padding: 16px;
    text-align: center;
    color: #888;
    font-size: 14px;
}