/* Ensure each container can position its dice icon absolutely */
.relative-container {
    position: relative;
}

/* Hide default scrollbar for a cleaner look */
::-webkit-scrollbar {
    width: 0px;
}

/* Main Container Styles */
.container-sales-pitch {
    max-width: 1250px;
    margin: 1rem auto;

    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.favourite-sales-pitch {
    max-width: 1250px;
    margin: 1rem auto;
    padding: 1rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
/* Gradient button for Generate/Regenerate */
.btn-gradient {
    background: linear-gradient(90deg, #553c9a, #ee4b2b);
    color: white;
}

/* Loader styles */
.spinner-border {
    width: 1.2rem;
    height: 1.2rem;
    border-width: 0.2em;
}

/* Dice Icon & Copy Icon */
.dice-icon,
.copy-icon {
    cursor: pointer;
    color: #d94646;
}

/* Draft Buttons */
.draft-btn {
    transition: background-color 0.2s;
}

/* Favorites icon highlight */
.favorite-icon {
    cursor: pointer;
    color: #ee4b2b;
}
.favorite-icon.favorited {
    color: #ff6b81;
}

/* Action Buttons */
.action-buttons .btn {
    min-width: 100px;
    transition: background-color 0.2s, transform 0.1s;
}

/* Delete/Copy icons in favorites */
.fav-actions {
    display: flex;
    gap: 10px;
}
.copy-fav-icon i,
.delete-fav-icon i {
    color: #d94646;
    cursor: pointer;
}

.step {
    background-color: #f9f9f9;
    padding: 20px;
}
@media screen and (max-width: 768px) {
    .step {
        padding: 15px;
        margin-bottom: 20px;
        max-width: 100%;
        overflow-x: hidden;
    }
}
.step-description {
    font-size: 16px;
    color: #666;
}