/**
 * FuelGuard Simulator Widget Styles
 * @package FuelGuard
 * @version 1.0.0
 */

@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@400;600&display=swap");

/* --------------------------------- */
/* Ana Konteyner */
/* --------------------------------- */
.d3-fuelguard-simulator-container {
    width: 100%;
    max-width: 850px;
    margin: 1rem auto;
    padding: 1rem;
    background: #fff;
    border-top: 5px solid #bb0a07;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    font-family: "Lexend", sans-serif;
    color: #343a40;
    position: relative;
}

/* Free Badge */
.free-badge {
    position: absolute;
    top: -2rem;
    right: -1.5rem;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #BB0A07 0%, #27ae60 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    font-size: 0.7em;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.4);
    z-index: 10;
    border: 3px solid #fff;
    transform: rotate(15deg);
}

/* Başlıklar */
.d3-fuelguard-simulator-container h3 {
    text-align: center;
    color: #bb0a07;
    margin-bottom: 0.5rem;
}

.d3-fuelguard-simulator-container h3.hidden,
.d3-fuelguard-simulator-container h4.hidden {
    display: none;
}

.d3-fuelguard-simulator-container h4 {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 1rem;
    color: #555;
}

/* --------------------------------- */
/* Form Stilleri */
/* --------------------------------- */
.simulator-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.6rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
}

.form-group {
    min-width: 200px;
    position: relative;
}

.form-group .input-with-tooltip {
    position: relative;
    display: flex;
    align-items: center;
}

.form-group .input-with-tooltip input,
.form-group .input-with-tooltip select {
    flex: 1;
    padding-right: 2.5rem;
}

.info-icon {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #bb0a07;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75em;
    font-weight: 700;
    cursor: help;
    z-index: 1;
}

.info-icon:hover + .tooltip-text,
.info-icon:focus + .tooltip-text {
    opacity: 1;
    visibility: visible;
}

.tooltip-text {
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    background: #343a40;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8em;
    line-height: 1.3;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.tooltip-text::before {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 1rem;
    border: 6px solid transparent;
    border-bottom-color: #343a40;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.88em;
    margin-bottom: 0.3rem;
    color: #343a40;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 0.45rem 0.55rem;
    border: 1px solid #d0d7de;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 0.88em;
    font-family: "Lexend", sans-serif;
    font-weight: 500;
    line-height: 1.2;
    background: #f9fafb;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-group select:focus,
.form-group input:focus {
    border-color: #bb0a07;
    box-shadow: 0 0 0 3px rgba(187, 10, 7, 0.15);
    outline: none;
    background: #fff;
}

.form-group .hint {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.85em;
    color: #6c757d;
}

/* Force consistent number input styling */
.form-group input[type="number"] {
    font-family: "Lexend", sans-serif !important;
    font-weight: 500 !important;
    font-size: 0.88em !important;
    padding: 0.45rem 0.55rem !important;
    border: 1px solid #d0d7de !important;
    border-radius: 10px !important;
    line-height: 1.2 !important;
    background: #f9fafb !important;
    color: #343a40;
}

/* Remove native spinners */
.form-group input[type="number"]::-webkit-outer-spin-button,
.form-group input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.form-group input[type="number"] {
    -moz-appearance: textfield !important;
    appearance: textfield !important;
}

/* --------------------------------- */
/* Butonlar */
/* --------------------------------- */
.calculate-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 0.6rem 0.9rem;
    background-color: #bb0a07;
    color: white;
    font-size: 0.95em;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin: 0.5rem auto 0;
    text-decoration: none;
}

.calculate-button:hover {
    background-color: #a00906;
}

/* --------------------------------- */
/* Sonuçlar Bölümü */
/* --------------------------------- */
#simulator-results,
.simulator-results {
    margin-top: 1rem;
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
    text-align: center;
    display: none;
}

.simulator-results .main-actions {
    display: none;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.simulator-results .main-actions.show {
    display: flex;
}

.simulator-results .main-actions .calculate-button {
    padding: 0.5rem 0.75rem;
    font-size: 0.88em;
    margin: 0;
}

.results-text {
    font-size: 1em;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* --------------------------------- */
/* D3 Grafik Stilleri */
/* --------------------------------- */
.d3-simulator-svg-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0.75rem 0.75rem 0.5rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.axis path,
.axis line {
    fill: none;
    stroke: #adb5bd;
    shape-rendering: crispEdges;
}

#d3-simulator-tooltip {
    text-align: initial;
    opacity: 0;
    position: absolute;
    pointer-events: none;
    background: #fff;
    border-radius: 6px;
    padding: 0.8rem 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    font-size: 0.9em;
    border-left: 3px solid #bb0a07;
}

/* Chart legend & summary */
.chart-legend {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.chart-legend .item {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85em;
    color: #555;
}

.chart-legend .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.chart-summary {
    text-align: center;
    font-size: 0.9em;
    margin-top: 0.25rem;
    color: #343a40;
}

/* Period toggle */
.period-toggle {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.period-toggle button {
    padding: 0.4rem 0.8rem;
    border: 1px solid #d0d7de;
    background: #f9fafb;
    color: #555;
    font-size: 0.9em;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.period-toggle button.active {
    background: #bb0a07;
    color: #fff;
    border-color: #bb0a07;
}

.period-toggle button:hover:not(.active) {
    background: #fff;
    border-color: #bb0a07;
}

/* --------------------------------- */
/* Loading Steps */
/* --------------------------------- */
.loading-steps {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 0.75rem;
    gap: 0.6rem;
    border: 1px dashed #d0d7de;
    border-radius: 8px;
    background: #f9fafb;
}

.loading-steps.progress,
.loading-steps.final {
    display: flex;
}

.loading-steps .spinner {
    width: 32px;
    height: 32px;
    border: 3px solid #f0f2f5;
    border-top-color: #bb0a07;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-steps .steps {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 350px;
}

.loading-steps .steps .step {
    padding: 0.4rem 0.75rem;
    margin: 0.2rem 0;
    background: #f8f9fa;
    border-radius: 8px;
    color: #6c757d;
    font-size: 0.82em;
    transition: all 0.3s ease;
}

.loading-steps .steps .step.active {
    background: #bb0a07;
    color: white;
    font-weight: 600;
}

.loading-steps .steps .step.completed {
    background: #27ae60;
    color: white;
}

.loading-steps .progress-text {
    display: none;
    font-size: 0.82em;
    color: #555;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.loading-steps.progress .progress-text {
    display: block;
}

.loading-steps .progressbar {
    display: none;
    width: 100%;
    max-width: 400px;
    height: 6px;
    background: #f0f2f5;
    border-radius: 6px;
    overflow: hidden;
}

.loading-steps.progress .progressbar {
    display: block;
}

.loading-steps .progressbar .bar {
    width: 0%;
    height: 100%;
    background: #bb0a07;
    animation: loadBar 6s linear forwards;
}

@keyframes loadBar {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

.loading-steps.simple {
    padding: 1.25rem;
}

.loading-steps.simple .steps {
    display: none;
}

.loading-steps.simple .spinner {
    width: 36px;
    height: 36px;
    border-width: 4px;
}

.loading-steps.final .steps .step:nth-child(1),
.loading-steps.final .steps .step:nth-child(2) {
    display: none;
}

.loading-steps.progress .spinner,
.loading-steps.progress .steps {
    display: none;
}

.info-image {
    width: 160px;
    height: 160px;
    object-fit: contain;
    margin-bottom: 0.4rem;
}

.info-message {
    font-size: 0.82em;
    color: #2c3e50;
    margin-top: 0.5rem;
    text-align: center;
    min-height: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    width: 100%;
    max-width: 420px;
    padding: 0.5rem 0.9rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e1e8ed;
    border-left: 3px solid #bb0a07;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    line-height: 1.4;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}

.info-message::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: linear-gradient(180deg, #bb0a07 0%, #d62828 100%);
    box-shadow: 0 0 10px rgba(187, 10, 7, 0.4);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* --------------------------------- */
/* Vehicle Info (Stage 2) */
/* --------------------------------- */
.vehicle-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin: 0.5rem 0 1rem;
    padding: 1rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    position: relative;
}

.vehicle-info .skip-checkbox {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 0.3rem;
    z-index: 2;
    position: relative;
}

.vehicle-info .skip-checkbox input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.vehicle-info .skip-checkbox label {
    margin: 0;
    font-size: 0.9em;
    font-weight: 500;
    cursor: pointer;
}

.vehicle-info .data-fields-wrapper {
    display: contents;
    transition: filter 0.3s ease;
}

.vehicle-info.blur-fields .form-group {
    filter: blur(4px);
    pointer-events: none;
    user-select: none;
}

.vehicle-info.blur-fields .form-group input,
.vehicle-info.blur-fields .form-group select {
    pointer-events: none !important;
    user-select: none !important;
}

.vehicle-info input:disabled,
.vehicle-info select:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #e9ecef !important;
}

.data-note {
    grid-column: 1 / -1;
    font-size: 0.85em;
    color: #6c757d;
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 0.4rem 0.6rem;
    margin-bottom: 0.3rem;
    display: none;
}

.data-note.show {
    display: block;
}

.data-note strong {
    color: #856404;
}

.vehicle-info .form-actions {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.vehicle-info .form-actions .calculate-button {
    width: auto;
    padding: 0.6rem 0.8rem;
    font-size: 0.95em;
    border-radius: 10px;
}

.form-note {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 0.5rem 0.65rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-left: 3px solid #bb0a07;
    border-radius: 10px;
    color: #343a40;
    font-size: 0.82em;
    margin-bottom: 0.5rem;
}

.form-note .icon svg {
    display: block;
    width: 16px;
    height: 16px;
}

.form-note .content {
    line-height: 1.3;
}

.form-note .content strong {
    font-weight: 600;
    color: #bb0a07;
}

/* --------------------------------- */
/* Feature Tags Slider */
/* --------------------------------- */
.feature-tags {
    margin-top: 1rem;
    overflow: hidden;
    position: relative;
}

.feature-tags .tags-slider {
    display: flex;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.feature-tags .tag {
    min-width: 200px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.7rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.feature-tags .tag .icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #bb0a07;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-tags .tag .icon svg {
    width: 18px;
    height: 18px;
}

.feature-tags .tag .text {
    font-size: 0.85em;
    color: #343a40;
    font-weight: 500;
    line-height: 1.2;
}

.tags-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.tags-nav button {
    padding: 0.3rem 0.6rem;
    background: #f9fafb;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85em;
    color: #555;
}

.tags-nav button:hover {
    background: #fff;
    border-color: #bb0a07;
}

/* --------------------------------- */
/* Theft Info (Stage 3) */
/* --------------------------------- */
.theft-info {
    margin-top: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    text-align: left;
}

.theft-info h4 {
    margin: 0 0 0.4rem;
    color: #bb0a07;
    font-size: 1em;
}

.theft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.4rem;
}

.theft-card {
    display: grid;
    grid-template-columns: 22px auto;
    gap: 0.35rem;
    align-items: start;
    padding: 0.4rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.theft-card h5 {
    margin: 0;
    font-size: 0.88em;
    color: #343a40;
}

.theft-card ul {
    margin: 0.15rem 0 0;
    padding-left: 0.9rem;
}

.theft-card li {
    font-size: 0.82em;
    color: #555;
}

.theft-info .form-actions {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.4rem;
}

.theft-info .form-actions .calculate-button {
    width: auto;
    padding: 0.6rem 0.9rem;
    font-size: 0.95em;
}

/* Slider */
.theft-slider {
    overflow: hidden;
}

.theft-slider .slides {
    display: flex;
    transition: transform 0.3s ease;
}

.theft-slider .slide {
    min-width: 50%;
}

.slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.35rem;
}

.slider-controls .calculate-button {
    width: auto;
    padding: 0.5rem 0.8rem;
    font-size: 0.9em;
}

/* --------------------------------- */
/* Detailed Report Trigger Button */
/* --------------------------------- */
.detailed-report-trigger {
    display: none;
    text-align: center;
    margin: 0.75rem 0 1rem;
}

.show-contact-form-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1rem;
    font-size: 0.88em;
    font-weight: 600;
    background: linear-gradient(135deg, #bb0a07 0%, #a00906 100%);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(187, 10, 7, 0.2);
    letter-spacing: 0.2px;
}

.show-contact-form-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(187, 10, 7, 0.3);
    background: linear-gradient(135deg, #a00906 0%, #8a0805 100%);
}

.show-contact-form-btn svg {
    flex-shrink: 0;
}

/* --------------------------------- */
/* Contact Form Stage (Stage 4) */
/* --------------------------------- */
.contact-form-stage {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.contact-form-header {
    margin-bottom: 0.75rem;
}

.contact-back-btn {
    display: inline-flex;
    align-items: center;
    margin: 0;
}

.contact-back-btn:hover {
    background: #5a6268 !important;
}

.contact-form-info {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border: 1px solid #ffd6d6;
    border-left: 3px solid #bb0a07;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.85em;
    line-height: 1.5;
    color: #2c3e50;
}

.contact-form-info strong {
    color: #bb0a07;
}

.contact-form-stage h4 {
    text-align: center;
    color: #bb0a07;
    font-size: 1.05em;
    margin-bottom: 0.9rem;
    font-weight: 600;
}

.contact-info-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}

.contact-info-form .form-group {
    min-width: auto;
}

.contact-info-form .form-group label {
    font-size: 0.85em;
    margin-bottom: 0.25rem;
}

.contact-info-form .form-group input {
    padding: 0.4rem 0.5rem;
    font-size: 0.85em;
}

.contact-info-form .form-group.full-width {
    grid-column: 1 / -1;
}

.kvkk-checkbox {
    grid-column: 1 / -1;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.6rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-top: 0.3rem;
}

.kvkk-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 0.15rem;
    cursor: pointer;
    flex-shrink: 0;
}

.kvkk-checkbox label {
    margin: 0;
    font-size: 0.82em;
    color: #343a40;
    line-height: 1.4;
    cursor: pointer;
}

.kvkk-checkbox label a {
    color: #bb0a07;
    text-decoration: underline;
}

.kvkk-checkbox label a:hover {
    color: #a00906;
}

.contact-submit-btn {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0.4rem;
    padding: 0.65rem 0.9rem;
    font-size: 0.95em;
}

/* Contact Form Progress */
.contact-form-progress {
    display: none;
    text-align: center;
    padding: 2rem 1rem;
}

.progress-spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
    border: 4px solid #f0f2f5;
    border-top-color: #bb0a07;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.contact-form-progress p {
    color: #6c757d;
    font-size: 0.9em;
    font-weight: 500;
}

/* Contact Success Message */
.contact-success-message {
    display: none;
    text-align: center;
    padding: 2rem 1rem;
    animation: successFadeIn 0.5s ease-out;
}

.success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPulse 0.6s ease-out;
}

.contact-success-message h3 {
    color: #27ae60;
    font-size: 1.15em;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-success-message p {
    color: #555;
    font-size: 0.9em;
    line-height: 1.5;
}

@keyframes successFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes successPulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* --------------------------------- */
/* Responsive */
/* --------------------------------- */
@media (max-width: 768px) {
    .d3-fuelguard-simulator-container {
        padding: 0.75rem;
    }

    .simulator-form {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .free-badge {
        width: 60px;
        height: 60px;
        font-size: 0.65em;
        right: -1rem;
    }

    .vehicle-info {
        grid-template-columns: 1fr;
    }

    .simulator-results .main-actions {
        flex-direction: column;
    }

    .feature-tags .tag {
        min-width: 180px;
    }

    .contact-info-form {
        grid-template-columns: 1fr;
    }

    .contact-form-info {
        font-size: 0.8em;
    }

    .contact-form-stage {
        padding: 0.75rem;
    }
}

