/* Estilo viejo */
body {
    font-family: Arial, sans-serif;
    background-color: #b5b5b5;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    box-sizing: border-box;
    overflow-y: auto;
    max-height: 90vh;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
}

input[type="text"],
input[type="email"],
input[type="date"],
input[type="telefono"],
input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    color: #333;
}

.submit-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #4CAF50;
    color: white;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-button:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.submit-button:active {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.button-logo {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.signature {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: flex;
    align-items: center;
}

#mdzinternet {
    width: 120px; /* Ajusta el tamaño de la imagen según sea necesario */
    margin-right: 5px;
}

.signature-text {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
}

#tecnologiaactiva {
    margin-left: 5px;
    animation: changeColor 3s infinite;
}

@keyframes changeColor {
    0% {
        color: #ff4500;
    }
    33% {
        color: #1e90ff;
    }
    66% {
        color: #32cd32;
    }
    100% {
        color: #ff4500;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 8px;
    width: 80%;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.close, .note-close, .confirm-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover, .note-close:hover, .confirm-close:hover,
.close:focus, .note-close:focus, .confirm-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

.pagination {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.pagination a {
    color: black;
    padding: 8px 16px;
    text-decoration: none;
    border: 1px solid #ddd;
    margin: 0 4px;
}

.pagination a.active {
    background-color: #4CAF50;
    color: white;
    border: 1px solid #4CAF50;
}

.pagination a:hover:not(.active) {
    background-color: #ddd;
}

.note-exists {
    background-color: #d4edda;
}

.note-form {
    display: flex;
    flex-direction: column;
}

.note-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.note-form button {
    align-self: flex-end;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #4CAF50;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.note-form button:hover {
    background-color: #45a049;
}

.confirm-modal-content {
    text-align: center;
    padding: 20px;
}

.message-success {
    background-color: #d4edda;
    color: #155724;
    padding: 10px;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    margin-bottom: 20px;
}

.message-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Estilo nuevo */
input[type="telefono"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    color: #333;
}

.submit-button {
    background-color: #4CAF50; /* Reemplaza el color por el que necesitas */
    color: white;
}

#mdzinternet {
    width: 150px; /* Ajusta el tamaño de la imagen según sea necesario */
    margin-right: 10px;
}
