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

/* Hide divs by default to prevent flash on page load */
.results-picker,
.results-gpt,
.gpt-prompt,
.gpt-prompt-shop {
    display: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    padding: 20px;
    background: #f5f5f5;
    height: auto;
    position: relative;
}

.select-genre {
    margin-bottom: 20px;
    padding: 16px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.select-genre label {
    font-weight: 600;
    color: #333;
}

.genre-input-container {
    position: relative; /* Ensure absolute positioning of suggestions is relative to this container */
    display: flex; /* Use flexbox for input and button alignment */
    gap: 10px; /* Space between input and button */
    align-items: center; /* Vertically align items */
}

.select-genre input[type="text"] {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    height: 40px;
}

.suggestion-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1002; /* Keep the higher z-index */
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    max-height: 240px; /* ~6 items x 40px */
    overflow-y: auto;
    width: 100%;
    list-style: none;
    margin-top: 4px;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.suggestion-list li {
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.suggestion-list li:hover {
    background-color: #f0f0f0;
}

.suggestion-list:empty {
    display: none;
}

@media (max-width: 768px) {

    .select-genre {
        padding: 10px;
    }

    .select-genre input[type="text"] {
        font-size: 14px;
    }
}

.header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header img {
    height: 70px;
}

.header h2 {
    font-size: 16px;
    color: #333;
}

.btn {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    justify-content: space-between;
}

.btn-steps {
    display: flex;
    gap: 8px;
}

.btn-prompts-group {
    display: flex;
    gap: 8px;
}

.btn button {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn button:hover {
    background: #f0f0f0;
}

.btn button.active {
    background: #BF0000;
    color: white;
    border-color: #BF0000;
}

#prompts.active {
    background: #ffd700;
    color: black;
    border-color: #ffd700;
}

#prompts-shop.active {
    background: #ffd700;
    color: black;
    border-color: #ffd700;
}

@media (max-width: 768px) {
    .btn {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-steps {
        flex-wrap: wrap;
    }
    
    .btn button {
        flex: 1;
        width: 100%;
        text-align: center;
    }
}

.textarea-container {
    margin-bottom: 20px;
    background: white;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Collapsible prompt styles */
.textarea-container h3 {
    cursor: pointer;
    margin-bottom: 16px;
    user-select: none;
    transition: color 0.2s ease;
}

.textarea-container h3:hover {
    color: #BF0000;
}

.toggle-icon {
    font-size: 0.8em;
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.prompt-content {
    display: none;
    transition: all 0.3s ease;
}

.prompt-content.expanded {
    display: block;
}

.textarea-container.collapsed .toggle-icon {
    transform: rotate(-90deg);
}

.btn-prompts {
    display: inline-block;
    padding: 10px 20px;
    background-color: #BF0000;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 12px;
    box-shadow: 0 2px 4px rgba(191,0,0,0.2);
}

.btn-prompts:hover {
    background-color: #990000;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(191,0,0,0.3);
}

.btn-run-genre {
    padding: 10px 20px; /* Match input padding for height */
    background-color: #BF0000;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(191,0,0,0.2);
    height: 40px; /* Explicitly set height to match input */
    display: flex; /* Use flex to center text vertically */
    align-items: center; /* Center text vertically */
    justify-content: center; /* Center text horizontally */
}

.btn-run-genre:hover {
    background-color: #990000;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(191,0,0,0.3);
}

.btn-run-genre:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(191,0,0,0.2);
}

.btn-prompts:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(191,0,0,0.2);
}

.picker {
    max-width: 400px;
    margin: auto;
    padding: 1.5em;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', sans-serif;
}

.picker table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 10px;
}

.picker label {
    font-weight: 600;
    color: #333;
}

.picker input {
    width: 100%;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1em;
}

.picker button {
    background-color: #BF0000;
    color: white;
    padding: 0.6em 1.2em;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.picker button:hover {
    background-color: #990000;
}

/* Results Table Styles */
.results-picker {
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: auto;
}

/* Product Gallery Styles */
.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #BF0000;
}

.product-card.expanded {
    grid-column: 1 / -1;
    max-width: none;
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
}

.boost-indicator {
    display: inline-block;
    margin-left: 8px;
    background: #10b981;
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    vertical-align: middle;
}

.product-card.expanded .product-image {
    height: 400px;
    object-fit: contain;
    background: #f8f9fa;
}

.product-info {
    padding: 16px;
}

.product-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-details {
    display: none;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.product-card.expanded .product-details {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.warning-message {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid #fca5a5;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 16px;
    border-left: 4px solid #ef4444;
}

.warning-title {
    color: #dc2626;
    font-weight: 600;
    margin: 0 0 4px 0;
    font-size: 14px;
}

.warning-subtitle {
    color: #b91c1c;
    margin: 0;
    font-size: 12px;
}

.product-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.meta-item {
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
}

.meta-label {
    font-weight: 600;
    color: #374151;
}

.meta-value {
    color: #6b7280;
    margin-top: 2px;
}

.meta-link {
    color: #BF0000;
    text-decoration: none;
    font-weight: 500;
}

.meta-link:hover {
    text-decoration: underline;
}

.status-ready {
    color: #10b981;
    font-weight: 600;
}

.status-not-ready {
    color: #ef4444;
    font-weight: 600;
}

.boost-options {
    margin-bottom: 16px;
}

.boost-options h4 {
    margin: 0 0 12px 0;
    color: #1f2937;
    font-size: 16px;
}

.boost-option {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    margin-bottom: 8px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f9fafb;
}

.boost-option:hover {
    border-color: #BF0000;
    background: #fef2f2;
}

.boost-option.selected {
    border-color: #BF0000;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.boost-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    accent-color: #BF0000;
}

.boost-option-text {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

.boost-actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.btn-action {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #BF0000 0%, #a50000 100%);
    color: white;
}

.btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #a50000 0%, #8b0000 100%);
    transform: translateY(-1px);
}

.btn-primary:disabled {
    background: #d1d5db;
    color: #9ca3af;
    cursor: not-allowed;
}

.btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

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





/* Responsive Design */
@media (max-width: 768px) {
    .product-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px;
    }
    
    .product-card.expanded {
        grid-column: 1 / -1;
        max-width: none;
    }
    
    .product-card.expanded .product-image {
        height: 320px;
    }
    
    .product-meta {
        grid-template-columns: 1fr;
    }
    
    .boost-actions {
        flex-direction: column;
    }
    
    .btn-action {
        width: 100%;
        justify-content: center;
    }
}

/* Step 3 Results Table Styles */
.results-gpt {
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
    margin-top: 20px;
}

.results-gpt table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.results-gpt th {
    background: #f8f9fa;
    padding: 12px;
    text-align: center;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 10;
}

.results-gpt td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
    vertical-align: middle;
}

.results-gpt tr:hover {
    background-color: #f8f9fa;
}

.results-gpt button {
    transition: all 0.2s ease;
}

.results-gpt button:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.results-gpt button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive Design for Step 3 */
@media (max-width: 1200px) {
    .results-gpt table {
        font-size: 14px;
    }
    
    .results-gpt th,
    .results-gpt td {
        padding: 8px;
    }
}

@media (max-width: 900px) {
    .results-gpt {
        padding: 10px;
    }
    
    .results-gpt table {
        font-size: 12px;
        min-width: 600px;
    }
    
    .results-gpt th,
    .results-gpt td {
        padding: 6px;
    }
    
    .results-gpt th small {
        display: block;
        font-size: 10px;
        font-weight: normal;
        margin-top: 2px;
    }
}

@media (max-width: 600px) {
    .results-gpt {
        padding: 5px;
        margin: 10px 0;
    }
    
    .results-gpt table {
        min-width: 500px;
    }
    
    .results-gpt th,
    .results-gpt td {
        padding: 4px;
        font-size: 11px;
    }
    
    .results-gpt img {
        width: 40px !important;
        height: 40px !important;
    }
    
    .results-gpt button {
        font-size: 10px;
        padding: 4px 8px;
    }
}

/* Increase font size for all text areas and EasyMDE editors */
textarea {
    font-size: 16px !important;
    line-height: 1.5 !important;
}

/* Clean - old boost modal styles removed */

/* EasyMDE editor font size */
.CodeMirror {
    font-size: 16px !important;
    line-height: 1.5 !important;
}

.CodeMirror-code {
    font-size: 16px !important;
}

.editor-preview, .editor-preview-side {
    font-size: 16px !important;
    line-height: 1.5 !important;
}

/* =====================================================
    TABLE 3 - BOOST RESULTS STYLES (table3.js)
   ===================================================== */

/* Reload buttons for table3 */
.reload-button, .reload-button-fixed {
    background: linear-gradient(135deg, #BF0000 0%, #a50000 100%);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reload-button {
    border-radius: 8px;
    padding: 12px 24px;
    margin-bottom: 24px;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(191, 0, 0, 0.25);
}

.reload-button-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 18px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(191, 0, 0, 0.3);
}

.reload-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #a50000 0%, #8b0000 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(191, 0, 0, 0.35);
}

.reload-button-fixed:hover:not(:disabled) {
    background: linear-gradient(135deg, #a50000 0%, #8b0000 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(191, 0, 0, 0.4);
}

.reload-button:disabled, .reload-button-fixed:disabled {
    background: #d1d5db;
    color: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

/* Products grid for table3 */
.products-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 24px;
}

/* Product items for table3 */
.product-item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.product-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #BF0000;
}

.product-header {
    padding: 16px;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.delete-icon {
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.delete-icon:hover {
    background: #dc2626;
    transform: scale(1.1);
}

/* Images container for table3 */
.images-container {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.original-image-container, .selected-boost-container {
    flex: 1;
    min-width: 0;
}

.selected-boost-container {
    display: none;
}

.selected-boost-container.visible {
    display: block;
    animation: fadeIn 0.3s ease;
}

.product-item:not(.expanded) .selected-boost-container {
    display: none !important;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Images for table3 */
.original-image, .selected-boost-image, .boost-image-preview {
    width: 100%;
    height: 400px;
    object-fit: contain;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.original-image {
    border: 1px solid #e5e7eb;
    cursor: pointer;
}

.selected-boost-image {
    border: 2px solid #BF0000;
}

.boost-image-preview {
    max-width: 400px;
    border: 2px solid #d1d5db;
    cursor: pointer;
}

.original-image:hover, .boost-image-preview:hover {
    border-color: #BF0000;
}

.selected-boost-title {
    text-align: center;
    font-weight: 600;
    color: #BF0000;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Boost details for table3 */
.boost-details {
    display: none;
    padding: 20px;
    background: #f8f9fa;
    border-top: 1px solid #e5e7eb;
}

.product-item.expanded .boost-details {
    display: block;
    animation: slideDown 0.3s ease;
}

/* Boost categories for table3 */
.boost-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.boost-category {
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 16px;
    transition: all 0.2s ease;
    text-align: center;
}

.boost-category:hover {
    border-color: #BF0000;
    box-shadow: 0 2px 4px rgba(191, 0, 0, 0.1);
}

.boost-category h4 {
    margin: 0 0 8px 0;
    color: #1f2937;
    font-size: 13px;
    font-weight: 600;
}

.boost-count {
    font-size: 24px;
    font-weight: 700;
    color: #BF0000;
    margin-bottom: 12px;
}

.boost-date {
    font-size: 11px;
    color: #6b7280;
    margin: 8px 0;
    font-weight: 500;
}

/* Version navigation for table3 */
.version-nav-btn {
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    width: 24px;
    height: 20px;
    font-size: 10px;
    cursor: pointer;
    margin: 0 4px;
    transition: all 0.2s ease;
}

.version-nav-btn:hover:not(:disabled) {
    background: #e5e7eb;
    border-color: #BF0000;
}

.version-nav-btn:disabled {
    background: #f9fafb;
    color: #d1d5db;
    cursor: not-allowed;
}

.version-info {
    font-size: 10px;
    color: #374151;
    font-weight: 600;
}

.creation-date {
    display: block;
    margin-top: 4px;
}

/* Actions for table3 */
.boost-actions {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 12px;
    flex-wrap: wrap;
}

.action-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.2s ease;
    min-width: 50px;
    color: white;
}

.btn-prompt { background: #3b82f6; }
.btn-prompt:hover { background: #2563eb; transform: translateY(-1px); }

.btn-rerun { background: #10b981; }
.btn-rerun:hover { background: #059669; transform: translateY(-1px); }

.btn-boost5 { background: #f59e0b; }
.btn-boost5:hover { background: #d97706; transform: translateY(-1px); }

.action-btn:disabled {
    background: #d1d5db;
    color: #9ca3af;
    cursor: not-allowed;
    transform: none;
}


/* Responsive design for table3 */
@media (max-width: 768px) {
    .reload-button-fixed {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .products-grid {
        gap: 24px;
    }
    
    .boost-categories {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .boost-actions {
        flex-direction: column;
    }
    
    .action-btn {
        width: 100%;
        min-width: unset;
    }
    
    .original-image, .selected-boost-image, .boost-image-preview {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .boost-categories {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .product-header {
        padding: 12px;
    }
    
    .boost-details {
        padding: 16px;
    }
    
    .boost-count {
        font-size: 20px;
    }
}

/* === GENRE PAGE: Large Dense Grid Styles (unique class names) === */
.genre-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 18px;
    margin: 32px 0 100px 0;
}

.genre-grid-item-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 18px 8px 20px 8px;
    transition: box-shadow 0.2s, border 0.2s;
    position: relative;
}

.genre-grid-item-large.selected {
    box-shadow: 0 6px 24px rgba(191,0,0,0.18);
    border: 3px solid #BF0000;
}

.genre-large-img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #eee;
    margin-bottom: 12px;
    background: #f8f9fa;
    transition: border 0.2s, box-shadow 0.2s;
}

.genre-large-img:hover {
    border: 2px solid #BF0000;
    box-shadow: 0 4px 16px rgba(191,0,0,0.10);
}

.genre-large-checkbox {
    margin-top: 6px;
    accent-color: #BF0000;
    width: 28px;
    height: 28px;
    cursor: pointer;
}

.genre-large-update {
    font-size: 18px;
    color: #BF0000;
    margin-bottom: 18px;
    font-weight: 700;
    text-align: right;
}

.genre-large-save-btn {
    position: fixed;
    right: 40px;
    bottom: 40px;
    z-index: 4000;
    background: #BF0000;
    color: #fff;
    border: none;
    border-radius: 60px;
    padding: 24px 48px;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 6px 24px rgba(191,0,0,0.22);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.genre-large-save-btn:hover {
    background: #990000;
    transform: translateY(-3px) scale(1.06);
}

@media (max-width: 900px) {
    .genre-grid-large {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }
    .genre-large-img {
        width: 90px;
        height: 90px;
    }
    .genre-large-save-btn {
        right: 10px;
        bottom: 10px;
        padding: 14px 24px;
        font-size: 16px;
    }
}