/* === GENERAL === */
body {
    background-color: #f0f2f5;
    color: #2e2e2e;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

/* === NAVBAR === */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
    padding: 10px 20px;
}

.navbar .navbar-brand,
.navbar .nav-link {
    color: #2e2e2e !important;
    font-weight: 500;
}

.navbar .nav-link:hover {
    color: #00a35c !important;
}

/* === CARDS === */
.card {
    background-color: #ffffff;
    border: 1px solid #dcdfe4;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    padding: 24px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* === FORMULARIOS === */
input.form-control,
select.form-control,
textarea.form-control {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 14px;
    color: #333;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

input.form-control:focus,
select.form-control:focus,
textarea.form-control:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 0 0.15rem rgba(76, 175, 80, 0.2);
    outline: none;
}

label {
    color: #444;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

/* === PLACEHOLDER === */
::placeholder {
    color: #999;
    opacity: 1;
}

::-webkit-input-placeholder { color: #999; }
:-ms-input-placeholder { color: #999; }
::-moz-placeholder { color: #999; opacity: 1; }
:-moz-placeholder { color: #999; opacity: 1; }

/* === BOTONES === */
.btn-success {
    background-color: #00a35c;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    transition: background-color 0.3s ease;
}

.btn-success:hover {
    background-color: #008f4d;
}

.btn-secondary {
    border-radius: 8px;
    font-weight: 500;
}

/* === TABLAS === */
.table {
    background-color: #fff;
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 20px;
}

.table th {
    background-color: #f7f9fb;
    color: #555;
    font-weight: 600;
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

/* === ENCABEZADOS === */
h1, h2, h3, h4, h5, h6 {
    color: #2d2d2d;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* === FOOTER === */
footer {
    background-color: #f9f9f9;
    color: #777;
    border-top: 1px solid #ddd;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

.zoomable {
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.zoomable.zoomed {
    transform: scale(2);
    z-index: 10;
    position: relative;
    cursor: zoom-out;
}