Current File : /var/www/pharmacius/css/editarCss.css
 /* Reset de estilo para quitar márgenes y padding por defecto */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body principal */
body {
    font-family: 'Arial', sans-serif;
    background-color:rgb(255, 255, 255);
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

/* Contenedor principal */
h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #00bcd4;
}

/* Estilos del formulario */
form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Estilo de los labels */
label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #00bcd4;
}

/* Estilo de los campos de entrada */
input[type="text"],
input[type="url"],
input[type="number"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
}

/* Estilo de los botones */
button {
    width: 100%;
    padding: 12px;
    background-color: #00bcd4;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #064c55;
}

/* Estilo para el enlace de cancelar */
a {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #888;
    text-decoration: none;
    font-size: 16px;
}

a:hover {
    color: #00bcd4;
}

/* Respuesta del texto en caso de error o éxito */
.alert {
    text-align: center;
    padding: 10px;
    background-color: #f8d7da;
    color: #721c24;
    border-radius: 5px;
    margin-bottom: 20px;
}

.success {
    background-color: #d4edda;
    color: #00bcd4;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
}

.notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1050;
    display: none;
    width: 300px;
    padding: 10px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.notification.success {
    background-color: #00bcd4;
}
.notification.danger {
    background-color: #dc3545;
}


/* Ajuste para pantallas pequeñas */
@media (max-width: 600px) {
    form {
        padding: 15px;
    }
    button {
        font-size: 16px;
    }
}

.checkbox-grande {
    transform: scale(2.5) !important;
    cursor: pointer !important;
}