﻿body {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    background: #eee;
    padding: 10px;
}

.container {
    max-width: 400px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
}

.campo {
    margin-bottom: 12px;
}

label {
    display: block;
    font-weight: bold;
    font-size: 0.9em;
}

input, select, textarea {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.search-box {
    display: flex;
    gap: 5px;
}

.btn-buscar {
    background: #3498db;
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 5px;
}

.btn-guardar {
    width: 100%;
    background: #27ae60;
    color: white;
    border: none;
    padding: 15px;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 10px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
}

.modal-content {
    background: white;
    width: 85%;
    max-width: 350px;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
}

.button-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.btn-accion {
    padding: 15px;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.btn-azul {
    background: #2980b9;
}

.btn-naranja {
    background: #e67e22;
}

.btn-cerrar {
    width: 100%;
    padding: 10px;
    background: #95a5a6;
    color: white;
    border: none;
    border-radius: 5px;
}

.resultado-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

.btn-reporte {
    width: 100%;
    background: #34495e;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}