textarea {
    width: 100%;
    min-height: 80px;
    padding: 0.7rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
    resize: vertical;
    background: #fff; /* was: #bb2e2e */
}
body {
    background: #f6f8fa;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    background: #fff;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    min-width: 320px;
    max-width: 600px;
    margin: 2rem auto;
}
h2 {
    margin-bottom: 1.5rem;
    color: #333;
    text-align: center;
}
input[type="text"], input[type="email"], input[type="password"] {
    width: 100%;
    padding: 0.7rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
}
input[type="date"], input [type="datetime-local"] {
    display: block;
    width: 100%;
    padding: 0.7rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;

}
button {
    width: 100%;
    padding: 0.7rem;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
button:hover {
    background: #0056b3;
}
button[type="submit"] {
    width: 100%;
    padding: 0.7rem;
    background: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
button[type="submit"]:hover {
    background: #388e3c;
}
a {
    display: inline-block;
    margin-top: 1rem;
    color: #007bff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
/* Popup styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
    justify-content: center;
    align-items: center;
}
.modal.active {
    display: flex;
}
.modal-content {
    background: #fff;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    min-width: 280px;
    text-align: center;
}
.modal-content button {
    margin-top: 1rem;
    width: auto;
    padding: 0.5rem 1.5rem;
}
.logout-topright {
    position: fixed;
    top: 24px;
    right: 32px;
    z-index: 100;
}
.logout-topright button {
    background: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.delete-button button, .medical-delete-button button {
    background: #d32f2f;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.logout-topright button:hover {
    background: #a31515;
}
.delete-button button:hover, .medical-delete-button button:hover {
    background: #a31515;
}
.pet-info strong, .pet-info { /* Dit is nodig voor opmaak */
    overflow-wrap: break-word;
    word-break: normal;
}
.chipnummer-value { /* Dit is nodig voor opmaak */
    display: inline-block;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: normal;
}
.delete-right {
    float: right;
    margin-left: 1rem;
}
@media (max-width: 600px) {
    .delete-right {
        float: none;
        display: block;
        margin: 1rem 0 0 0;
    }
}
@media (max-width: 1081px) {
    html {
        font-size: 130%;
    }

}