
.placeholder-red::placeholder {
    color: #dc2626;
}

/* Full Screen Modal Styles */
.modal-overlay {
    transition: opacity 0.3s ease-in-out;
}

.modal-container-fullscreen {
    /* Renamed for clarity */
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    width: 100vw;
    /* Full viewport width */
    height: 100vh;
    /* Full viewport height */
    border-radius: 0;
    /* No rounded corners for full screen */
    box-shadow: none;
    /* No shadow for full screen */
}

.modal-hidden {
    opacity: 0;
    pointer-events: none;
}

.modal-hidden .modal-container-fullscreen {
    transform: translateY(-20px) scale(0.95);
    opacity: 0;
}

.modal-visible {
    opacity: 1;
    pointer-events: auto;
}

.modal-visible .modal-container-fullscreen {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.stepper-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f3f4f6;
    color: #9ca3af;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 10;
    border: 3px solid #f3f4f6;
    transition: all 0.3s;
}

.stepper-item.active .stepper-icon-wrapper,
.stepper-item.completed .stepper-icon-wrapper {
    background-color: #8b0808;
    color: white;
    border-color: #8b0808;
}

.stepper-item:not(.active):not(.completed) .stepper-icon-wrapper {
    border-color: #D1D5DB;
}

.stepper-label {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.3s;
}

.stepper-item.active .stepper-label,
.stepper-item.completed .stepper-label {
    color: #8b0808;
}

.selectable-item {
    cursor: pointer;
    position: relative;
}

.selected-checkmark {
    display: none;
    position: absolute;
    top: -5px;
    /* Pushed 5px upwards */
    right: -5px;
    /* Pushed 5px to the right */
    width: 25px;
    height: 25px;
    background-color: #8b0808;
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    border: 2px solid white;
    z-index: 10;
}

.selectable-item.selected .selected-checkmark {
    display: flex;
}

.selectable-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.color-swatch {
    width: 100%;
    height: 50px;
}

.design-type-preview {
    height: auto;
    flex-grow: 1;
    aspect-ratio: 1;
    object-fit: contain;
    background-color: #f0f0f0;
    border-radius: 0.25rem;
    display: block;
}

.selectable-item[data-type='designType'] {
    aspect-ratio: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.input-error-field {
    border-color: #ef4444 !important;
}

.btn-gray {
    background-color: #e5e7eb;
    color: #374151;
}

.btn-gray:hover {
    background-color: #d1d5db;
}

.txt-blue {
    color: #050748;
}