.section {
    padding:0;
    margin:0;
}

.step-page {
    display: none;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    min-height: 300px;
}
.step-active {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.top-right {
    position: absolute;
    top: 15px;
    right: 20px;
    font-weight:
    bold; color: #555;
}
.rounded-btn {
    border-radius: 20px;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
}
canvas {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
}

.wizard-container {
    width: 100%;
    align: center;
    display: flex;
    flex-direction: column;
}

@media (max-width: 991px) {
    .wizard-container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    .step-page {
        min-height: 90vh;
        justify-content: space-between;
        padding: 2rem 1rem;
    }
    .bottom-button {
        text-align: center;
        padding-bottom: 1rem;
    }
}

.photo-uploader {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 24px;
}

/* Mobile: 2 columns */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.photo-grid-single {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

/* Desktop: 4 columns */
@media (min-width: 768px) {
  .photo-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.photo-tile {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f1f1f1;
}

.photo-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Add tile */
.add-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #bbb;
    color: #666;
    cursor: pointer;
    user-select: none;
}

.add-tile .plus {
    font-size: 32px;
    line-height: 1;
}

.add-tile .text {
    font-size: 12px;
    margin-top: 4px;
}

/* Remove button */
.remove-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    line-height: 22px;
    padding: 0;
}
.video-container {
    margin: auto;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
}
.file-tile {
    display: inline-block;
    width: 150px;
    height: 150px;
    border: 2px dashed #007bff;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s;
}
.file-tile:hover {
    background-color: #e9f5ff;
}
.file-tile span {
    font-size: 48px;
    color: #007bff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.video-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}
video {
    width: 100%;
    margin-top: 20px;
    border-radius: 8px;
    display: none;
}
.remove-button {
    position: absolute;
    top: 0px;
    right: 8px;
    z-index: 10;
    display: none;
    background-color: var(--default-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-weight: bold;
    cursor: pointer;
}
input[type="file"] {
    display: none;
}

.checkbox-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

/* smaller button-style for lots of items */
.btn-check + .btn {
    font-size: 12px;
    padding: 5px 8px 2px 2px;
    white-space: nowrap;
}

.accordion-day {
    font-weight: bolder;
}

