.carts-section {
    margin: 0 0 60px;
}

.cart-background {
    background-color: #f2f2f6;
    width: 92%;
    max-width: 550px;
    margin: 12px auto 0;
    border-radius: 5px;
    padding: 20px 0;
    display: flex;
    align-items: center; /* Vertical alignment */
    justify-content: space-between; /* Adjust as needed */
}

.cart-image {
    border-radius: 25px;
    width: 60%;
}

.cart-upload-section {
    width: 40%;
    display: flex;
    align-items: center;

}

.upload-cart-section {
    display: flex;
    flex-direction: column;
}

.cart-form-group {
    display: block;
}

.cart-upload-btn-box {
    margin: 0 auto 19px;
}

.cart-upload-btn {
    display: inline-block;
    font-weight: 500;
    color: #fff;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background-color: #211B6B;
    border-radius: 25px;
    line-height: 15px;
    font-size: 12px;
    padding: 8px 15px;
}

.cart-btn {
    display: inline-block;
    font-weight: 500;
    color: #211B6B;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background-color: #D4D4D4;
    border-radius: 25px;
    line-height: 15px;
    font-size: 12px;
    padding: 8px 15px;
}

.cart-eliminar-btn {
    display: block;
    font-weight: 500;
    color: #fff;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background-color: #C90016;
    border-radius: 25px;
    line-height: 15px;
    font-size: 12px;
    padding: 8px 15px;
}

.cart-eliminar-btn:hover, .cart-eliminar-btn:focus {
    color: #fff;
    text-decoration: none;
}

.delete-image-modal {
    display: flex;
}

.my-modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 3px 9px rgba(0,0,0,.1);
    max-width: 300px;
    position: relative;
    top: 300px;
}

.my-modal-header {
    border-bottom: none;
    padding: 15px 15px 0;
}

.my-modal-title-eliminar-imagen {
    text-align: center;
    color: #0E085E;
    font-weight: 600;
    font-size: 16px;
}

.cart-btn-no {
    display: inline-block;
    font-weight: 500;
    color: #211B6B;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background-color: #D4D4D4;
    border-radius: 25px;
    line-height: 15px;
    font-size: 12px;
    padding: 8px 45px;
}