.containerbody {
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: transparent;
    margin: 0;
    padding: 0;
}

.containerconfig {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.buttonsconfig {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.button-itemconfig {
    display: flex;
    align-items: center;
    gap: 15px;
}

.color-buttonconfig {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.color-buttonconfig:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.button-itemconfig span {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.displayconfig {
    width: 450px;
    height: 350px;
    border-radius: 20px;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.carouselconfig {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-imageconfig {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    padding: 30px;
}

.carousel-imageconfig.active {
    opacity: 1;
}

.optionsconfig {
    display: flex;
    margin-top: 30px;
    gap: 15px;
}

.optionsconfig button {
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    background-color: #ddd;
    transition: background-color 0.2s, transform 0.2s;
}

.optionsconfig button:hover {
    background-color: #bbb;
    transform: translateY(-2px);
}

.optionsconfig button.active {
    background-color: #6c5ce7;
    color: white;
}

@media (max-width:768px){
  .containerconfig{
    width: 75%;
    height: auto;
    flex-direction:column;
  }
}

@media (max-width:420px){
    
}