.tp-zoom-box {
    padding: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

.tp-zoom-box h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 700;
    color: #1f2937;
}

.tp-zoom-box label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #374151;
}

.tp-zoom-box input[type="datetime-local"],
.tp-zoom-box input[type="url"] {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 15px;
    background: #f9fafb;
    transition: all 0.2s ease;
}

.tp-zoom-box input:focus {
    border-color: #2563eb;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.tp-zoom-box button {
    margin-top: 16px;
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.tp-zoom-box button:hover {
    background: #1d4ed8;
}

.tp-tabla {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.tp-tabla th,
.tp-tabla td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.tp-tabla th {
    background: #f5f5f5;
    text-align: left;
}

.tp-form {
    background: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.tp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.tp-form label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.tp-form input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.tp-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0;
    font-weight: 600;
}

.tp-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: translateY(1px);
}
.tp-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.tp-save {
    background: #2271b1;
    color: white;
}

.tp-add {
    background: #16a34a;
    color: white;
    margin-bottom: 15px;
}

.tp-edit-row {
    display: none;
}

.tp-new-form {
    display: none;
    margin-top: 15px;
}