.cards-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 52px 0;
}

.create-stage {
    background-color: #0E870C;
    color: white;
    font-weight: bold;
    padding: 15px;
    border: none;
    border-radius: 60px;
    align-self: center;
}

.create-scenery:disabled {
    filter: grayscale(1);
    opacity: 0.7;
}

.custom-modal-footer {
    --dark-blue: #2b2981;

    display: flex;
    gap: 20px;
    padding: 18px;
}

.custom-modal-footer > button {
    font-weight: bold;
    flex: 1;
    padding: 8px;
    text-transform: uppercase;
}

.custom-modal-footer > button:first-child {
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: 8px;
    color: var(--blue);
}

.custom-modal-footer > button:first-child:hover {
    border-color: var(--dark-blue);
    color: var(--dark-blue)
}

.custom-modal-footer > button:last-child {
    border: none;
    border-radius: 8px;
    background-color: var(--blue);
    color: white;
}

.custom-modal-footer > button:last-child:hover {
    background-color: var(--dark-blue);
}
