/* iup-style.css */

.iup-form {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    background: #f9f9f9;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.iup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.iup-form input,
.iup-form select,
.iup-form button {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.iup-form button {
    background: #0073aa;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
}

.iup-form button:hover {
    background: #005f8d;
}

.iup-success,
.iup-error {
    max-width: 400px;
    margin: 10px auto;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
}

.iup-success {
    background: #d4edda;
    color: #155724;
}

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

input[type="checkbox"] {
    vertical-align: middle;
}

.checkboxes {
    display: flex;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
    word-wrap: break-word;
}

.entry-header {
    display: none;
}

#print-button {
    padding: 8px 14px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    display: none;
}

#print-button:hover {
    background-color: #005e8a;
}

@media(max-width: 768px) {
    .iup-grid {
        grid-template-columns: 1fr;
    }
}