.cem-wrapper {
    width: 100%;
    margin: auto;
    padding: 30px;
    border-radius: 20px;
    /* box-shadow: 0 10px 30px #edf2f2;*/
    background:#fff;
}

.cem-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cem-prevision label {
    margin-left: 15px;
    font-weight: 500;
}

.cem-clear {
    background: #2e2d39;
    border: none;
    color: white;
    padding: 10px 18px;
    border-radius: 7px;
    cursor: pointer;
    font-weight: 300;
}

.cem-search input {
    width: 100%;
    padding: 20px 20px;
    border-radius: 7px;
    border: 2px solid #2272b4;
    outline: none;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 300;
}

.cem-results {
    margin-top: 10px;
}

.cem-item {
    display: grid;
    grid-template-columns: 1fr 150px 150px 40px;
    align-items: center;
    padding: 15px 10px;
    border-bottom: 1px solid #ddd;
}

.cem-item strong {
    font-weight: 600;
}

.cem-price {
    text-align: right;
}

.cem-remove[title="Agregar"] { color: white; background: #51cba5;}

.cem-remove[title="Quitar"]{ color: white; background:#c95e5e;}

.cem-remove {
    cursor: pointer;
    font-size: 18px;
    text-align: center;
    border-radius: 7px;
}

.cem-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.cem-total strong {
    font-size: 22px;
}

.cem-actions {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #39c9bc;
    color: #fff;
    padding: 14px 22px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 300;
}

.btn-secondary {
    background: #b62022;
    color: #fff;
    padding: 14px 22px;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    font-weight: 300;
}
.btn-secondary:hover{background:#991515; }

.btn-primary:hover {
    background: #29ab9f; color:#fff}