.container-custom-design {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 350px;
}

.input-group-custom-design {
    position: relative;
    margin-bottom: 20px;
}

.input-group-custom-design input, .input-group-custom-design textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: 0.3s;
}

.input-group-custom-design input:focus, .input-group-custom-design textarea:focus {
    border-color: green;
}

.input-group-custom-design label {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    background: white;
    padding: 0 5px;
    transition: 0.3s;
}

.input-group-custom-design input:focus + label, 
.input-group-custom-design textarea:focus + label,
.input-group-custom-design input:not(:placeholder-shown) + label,
.input-group-custom-design textarea:not(:placeholder-shown) + label {
    top: 0;
    font-size: 12px;
    color: green;
}

.checkbox-group-custom-design, .radio-group-custom-design {
    margin-bottom: 20px;
}

/* Aumentar tamaño de los checkboxes y radiobuttons */
.checkbox-group-custom-design input[type="checkbox"],
.radio-group-custom-design input[type="radio"] {
    transform: scale(1.5); /* Aumenta el tamaño */
    margin-right: 10px; /* Espacio entre el botón y el texto */
}

/* Estilo cuando están seleccionados */
.checkbox-group-custom-design input[type="checkbox"]:checked,
.radio-group-custom-design input[type="radio"]:checked {
    border: 2px solid green; /* Borde verde */
    background-color: green; /* Fondo verde */
}

/* Estilo para el área de los checkboxes y radiobuttons al pasar el mouse */
.checkbox-group-custom-design input[type="checkbox"]:focus,
.radio-group-custom-design input[type="radio"]:focus {
    outline: none; /* Eliminar el borde por defecto */
    box-shadow: 0 0 5px green; /* Sombra verde al enfocar */
}

.file-upload-custom-design {
    display: flex;
    align-items: center;
    gap: 10px;
    background: green;
    color: white;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    justify-content: center;
}

.file-upload-custom-design input {
    display: none;
}
.select-group-custom-design {
    position: relative;
    margin-bottom: 20px;
}

.select-group-custom-design select {
    width: 100%;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    outline: none;
    appearance: none;
    background-color: white;
    font-size: 16px;
    transition: 0.3s;
    cursor: pointer;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23888" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
}

.select-group-custom-design select:focus {
    border-color: green;
    box-shadow: 0 0 5px green;
}

.select-group-custom-design label {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    background: white;
    padding: 0 5px;
    transition: 0.3s;
    pointer-events: none;
}

.select-group-custom-design select:focus + label,
.select-group-custom-design select:not([value=""]) + label {
    top: 0;
    font-size: 12px;
    color: green;
}
.custom-multiselect {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    font-family: sans-serif;
}

.select-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    background: white;
    cursor: pointer;
    transition: 0.3s;
}

.select-box:focus-within {
    border-color: green;
    box-shadow: 0 0 5px green;
}

.select-box .arrow {
    font-size: 18px;
    color: #888;
}

.options-box {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 2px solid #ccc;
    border-top: none;
    background: white;
    max-height: 200px;
    overflow-y: auto;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 10;
}

.options-box label {
    display: block;
    padding: 10px;
    cursor: pointer;
    transition: background 0.2s;
}

.options-box label:hover {
    background-color: #f0f0f0;
}

.options-box input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2);
    accent-color: green;
}
