/* ==========================================================================
   CRUFTS CALC — colour palette
   Primary green : #005E50
   Mid green     : #006954
   Muted green   : #72ACA0
   Lime accent   : #9EC933
   Gold accent   : #FFB00B
   Light bg      : #F2F6F4
   Body text     : #2B3A35
   Subtle text   : #293730
   ========================================================================== */

/* ---------- Reset / Base ---------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #F2F6F4;
    color: #2B3A35;
}

a {
    color: #005E50;
    text-decoration: none;
}

a:hover {
    color: #FFB00B;
    text-decoration: underline;
}

h1 {
    color: #005E50;
    font-size: 28px;
    margin: 0 0 8px 0;
    letter-spacing: -0.3px;
}

h2 {
    color: #005E50;
}

label {
    font-size: 15px;
    font-weight: 600;
    color: #2B3A35;
}

/* ---------- Layout ---------- */

.wrapper,
.example-wrapper {
    text-align: left;
    padding: 0 20px;
}

@media only screen and (min-width: 1000px) {
    .wrapper,
    .example-wrapper {
        width: 820px;
        margin: 0 auto;
        padding: 0;
    }
}

@media only screen and (min-width: 530px) and (max-width: 999px) {
    .wrapper,
    .example-wrapper {
        width: 100%;
        padding: 0 24px;
    }
}

@media only screen and (max-width: 529px) {
    .wrapper,
    .example-wrapper {
        width: 100%;
        padding: 0 14px;
    }
}

/* ---------- Header banner ---------- */

.top {
    line-height: 0;
    background: #005E50;
}

.top__logo {
    display: block;
    max-width: 500px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 20px 16px;
    mix-blend-mode: screen;
}

/* ---------- Tool description ---------- */

.tool-desc {
    background: #ffffff;
    border: 1px solid #c8ddd8;
    border-left: 4px solid #005E50;
    border-radius: 6px;
    padding: 20px 24px;
    margin: 0 0 28px 0;
    font-size: 15px;
    line-height: 1.7;
    color: #293730;
}

.tool-desc p {
    margin: 0 0 10px 0;
}

.tool-desc p:last-child {
    margin-bottom: 0;
}

.tool-desc ul {
    margin: 4px 0 10px 0;
    padding-left: 22px;
}

.tool-desc ul li {
    font-size: 15px;
    margin: 0;
    padding: 0;
    list-style: disc;
}

.tool-desc__notice {
    background: #fff8e6;
    border: 1px solid #FFB00B;
    border-radius: 5px;
    padding: 10px 14px;
    font-size: 14px;
    color: #4a3500;
}

.tool-desc__notice i {
    color: #FFB00B;
    margin-right: 4px;
}

.tool-desc__disclaimer {
    font-size: 13px;
    color: #293730;
    opacity: 0.75;
    border-top: 1px solid #c8ddd8;
    padding-top: 10px;
    margin-top: 4px;
}

.tool-desc__disclaimer a {
    color: #005E50;
    text-decoration: underline;
}

/* ---------- Show dates info strip ---------- */

.show-dates {
    display: flex;
    gap: 12px;
    margin: 0 0 28px 0;
    flex-wrap: wrap;
}

.show-dates--compact {
    margin: 0 0 20px 0;
}

.show-dates__item {
    flex: 1 1 0;
    min-width: 160px;
    background: #ffffff;
    border: 1px solid #c8ddd8;
    border-top: 3px solid #005E50;
    border-radius: 6px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.show-dates__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #293730;
}

.show-dates__label i {
    color: #005E50;
    margin-right: 4px;
}

.show-dates__value {
    font-size: 17px;
    font-weight: 700;
    color: #005E50;
}

.show-dates__value--unknown {
    color: #9aafaa;
    font-style: italic;
    font-weight: 500;
    font-size: 14px;
}

.show-dates__note {
    font-size: 11px;
    color: #293730;
    margin-top: 2px;
}

@media only screen and (max-width: 529px) {
    .show-dates {
        flex-direction: column;
    }
    .show-dates__item {
        min-width: unset;
    }
}

/* ---------- Form ---------- */

.form-subtitle {
    color: #293730;
    font-size: 16px;
    font-style: italic;
    margin: 0 0 28px 0;
}

form label {
    display: block;
    width: 100%;
    margin: 0 0 5px 0;
}

form ul,
form ol {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

form ul li,
form ol li {
    list-style: none;
}

form li label,
form li input[type=checkbox] + label {
    display: inline-block;
    width: auto;
    margin: 0 0 0 10px;
    vertical-align: middle;
    cursor: pointer;
    font-weight: 400;
}

form li {
    margin: 4px 0;
}

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

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

.form-group--checkbox {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 16px 0 22px 0;
}

.form-group--checkbox input[type="checkbox"] {
    flex: 0 0 auto;
    margin: 0;
}

.form-group--checkbox label {
    display: inline;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    cursor: pointer;
    color: #2B3A35;
}

.form-submit {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

.form-submit button {
    float: none;
}

/* ---------- Inputs ---------- */

input[type=text],
input[type=email],
input[type=number],
input[type=password],
input[type=date],
textarea,
select {
    background: #ffffff;
    color: #2B3A35;
    border: 2px solid #72ACA0;
    padding: 10px 14px;
    margin: 0 0 18px 0;
    width: 90%;
    font-weight: 600;
    font-size: 22px;
    font-family: inherit;
    border-radius: 8px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=date]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #005E50;
    box-shadow: 0 0 0 3px rgba(0, 94, 80, 0.15);
}

input[type=date] {
    font-size: 20px;
    margin-bottom: 18px;
}

input[type=date],
input[type=file] {
    margin-bottom: 18px;
}

input[type=checkbox] {
    height: 26px;
    width: 26px;
    background-color: #ffffff;
    border: 2px solid #72ACA0;
    accent-color: #005E50;
}

/* ---------- Button ---------- */

button,
.button_add {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    float: right;
    padding: 14px 34px;
    margin: 5px 0 44px 0;
    background: #005E50;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    font-family: inherit;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #005E50;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 94, 80, 0.25);
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.15s ease;
}

button:hover,
.button_add:hover {
    background: #FFB00B;
    border-color: #FFB00B;
    color: #1a2e28;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 176, 11, 0.35);
}

/* ---------- Error ---------- */

.errorMessage {
    display: block;
    background: #fdecea;
    border: 1px solid #c0392b;
    color: #7a1e1e;
    padding: 10px 14px;
    border-radius: 6px;
    width: 90%;
    font-size: 14px;
    margin-bottom: 10px;
}

/* ---------- Classes info ---------- */

.classes-info {
    margin: 56px 0 40px 0;
    border-top: 3px solid #9EC933;
    padding-top: 28px;
}

.classes-info__heading {
    color: #005E50;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.classes-info__note {
    color: #293730;
    font-size: 13px;
    margin: 0 0 22px 0;
}

.classes-info__note strong {
    color: #005E50;
}

.classes-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.classes-list__item {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 0 20px;
    padding: 12px 0;
    border-bottom: 1px solid #c8ddd8;
}

.classes-list__item:last-child {
    border-bottom: none;
}

.classes-list__item dt {
    font-weight: 700;
    color: #005E50;
    font-size: 14px;
    padding-top: 2px;
}

.classes-list__item dd {
    margin: 0;
    color: #293730;
    font-size: 13px;
    line-height: 1.6;
}

.classes-list__item dd em {
    color: #006954;
    font-style: italic;
}

@media only screen and (max-width: 600px) {
    .classes-list__item {
        grid-template-columns: 1fr;
        gap: 3px;
    }
}

/* ---------- Result page ---------- */

.result-section {
    margin: 28px 0;
    border-radius: 8px;
    padding: 20px 24px;
}

.result-section--eligible {
    background: #cee9df;
    border-left: 4px solid #005E50;
}

.result-section--ineligible {
    background: #f5d7d7;
    border-left: 4px solid #b43c3c;
}

.result-section__heading {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 14px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2B3A35;
}

.result-icon--ok { color: #005E50; }
.result-icon--no { color: #b43c3c; }

.result-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.result-list__item {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 94, 80, 0.10);
}

.result-section--ineligible .result-list__item {
    border-bottom-color: rgba(180, 60, 60, 0.10);
}

.result-list__item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.result-class {
    font-size: 16px;
    font-weight: 700;
    color: #005E50;
    margin-bottom: 2px;
}

.result-section--ineligible .result-class {
    color: #7a1e1e;
}

.result-reason {
    font-size: 13px;
    color: #293730;
    line-height: 1.5;
}

.result-empty {
    color: #293730;
    font-style: italic;
    margin: 20px 0;
}

.result-back {
    margin: 28px 0 0 0;
    border-top: 1px solid #c8ddd8;
    padding-top: 20px;
    padding-bottom: 60px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #005E50;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 18px;
    border: 2px solid #005E50;
    border-radius: 6px;
    transition: background 0.18s ease, color 0.18s ease;
}

.btn-back:hover {
    background: #005E50;
    color: #ffffff;
    text-decoration: none;
}

/* ---------- Tiles (strona główna) ---------- */

.tiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 10px 0 36px 0;
    list-style: none;
}

.tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px 16px 22px 16px;
    background: #005E50;
    color: #ffffff;
    border: 2px solid #005E50;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 94, 80, 0.20);
    text-decoration: none;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
}

.tile:hover {
    background: #FFB00B;
    border-color: #FFB00B;
    color: #1a2e28;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(255, 176, 11, 0.30);
    text-decoration: none;
}

.tile-icon {
    font-size: 46px;
    line-height: 1;
    margin-bottom: 14px;
}

.tile-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.tile-sub {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    opacity: 0.80;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media only screen and (max-width: 729px) {
    .tiles {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 10px 0 24px 0;
    }
}

/* ---------- Archive button ---------- */

.archive-link-wrap {
    display: flex;
    justify-content: center;
    margin: 60px 0 80px 0;
}

.archive-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 34px;
    background: #005E50;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #005E50;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 94, 80, 0.25);
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
}

.archive-link:hover {
    background: #FFB00B;
    border-color: #FFB00B;
    color: #1a2e28;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 176, 11, 0.35);
    text-decoration: none;
}

.archive-link i {
    font-size: 22px;
}

/* ---------- Tile-style buttons ---------- */

.button_add,
#owner_start_form_save {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    float: none;
    padding: 14px 34px;
    background: #005E50;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    font-family: inherit;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #005E50;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 94, 80, 0.25);
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
}

.button_add:hover,
#owner_start_form_save:hover {
    background: #FFB00B;
    border-color: #FFB00B;
    color: #1a2e28;
    float: none;
    font-size: 18px;
    padding: 14px 34px;
    margin: 5px 0 44px 0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 176, 11, 0.35);
}

/* ---------- No-AI banner ---------- */

.no-ai-banner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 20px 0 28px 0;
}

.no-ai-banner__img {
    flex: 0 0 auto;
}

.no-ai-banner__img img {
    display: block;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
}

.no-ai-banner__text {
    flex: 1 1 auto;
    color: #293730;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
}

.no-ai-banner__text p {
    margin: 0 0 0.8em 0;
}

.no-ai-banner__text p:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 729px) {
    .no-ai-banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .no-ai-banner__img img {
        max-width: 160px;
    }
}

/* ---------- Summary / table pages ---------- */

.summary-page {
    width: 100%;
    padding: 0 20px;
}

.summary-heading {
    color: #005E50;
    text-align: center;
    margin: 36px 0 18px 0;
    font-size: 26px;
}

.summary-heading:first-child {
    margin-top: 18px;
}

.summary-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.summary-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.summary-table th,
.summary-table td {
    border: 1px solid #c8ddd8;
    padding: 8px 10px;
    text-align: left;
    vertical-align: middle;
}

.summary-table thead th {
    background: #005E50;
    color: #ffffff;
    font-weight: 700;
    white-space: nowrap;
}

.summary-table tbody tr:nth-child(even) {
    background: rgba(0, 94, 80, 0.05);
}

.summary-table tbody tr:hover {
    background: rgba(0, 94, 80, 0.10);
}

.summary-td-photo {
    text-align: center;
}

.summary-thumb {
    display: block;
    height: 100px;
    width: auto;
    border-radius: 6px;
    cursor: pointer;
}

/* ---------- Flash messages ---------- */

.flash {
    padding: 10px 14px;
    border-radius: 8px;
    margin: 10px 0;
    font-size: 15px;
}

.flash-success {
    background: #cee9df;
    color: #1a4a3a;
    border: 1px solid #72ACA0;
}

.flash-warning {
    background: #fff8e6;
    color: #7a5b00;
    border: 1px solid #FFB00B;
}

.flash-info {
    background: #cee9df;
    color: #1a3a30;
    border: 2px solid #72ACA0;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 16px 0;
    font-size: 15px;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0, 94, 80, 0.10);
    font-weight: 500;
}

/* ---------- Owner flow ---------- */

.start-cta {
    margin: 2em 0;
    text-align: center;
}

.owner-info {
    margin-bottom: 1em;
}

.pets-section {
    margin: 1.5em 0;
}

.pets-section h3 {
    text-transform: uppercase;
    color: #005E50;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.pets-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.5em;
}

.pets-table th,
.pets-table td {
    border: 1px solid #c8ddd8;
    padding: 8px;
    text-align: left;
    vertical-align: middle;
}

.pets-table th {
    background: #005E50;
    color: #ffffff;
}

.pet-thumb {
    max-width: 90px;
    max-height: 90px;
    border-radius: 4px;
    display: block;
}

.pet-thumb-large {
    max-width: 240px;
    max-height: 240px;
}

/* ---------- Small utility buttons ---------- */

.actions {
    white-space: nowrap;
    vertical-align: middle;
    text-align: center;
}

button.btn,
a.btn,
.btn {
    display: block;
    width: 90px;
    box-sizing: border-box;
    padding: 6px 14px;
    margin: 0 auto 6px auto;
    text-align: center;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    font-family: inherit;
    line-height: 1.4;
    text-decoration: none;
    text-transform: none;
    letter-spacing: normal;
    text-shadow: none;
    border: 1px solid transparent;
    box-shadow: none;
    cursor: pointer;
    float: none;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

a.btn-edit,
button.btn-edit,
.btn-edit {
    background: #e8f3f0;
    color: #005E50;
    border-color: #72ACA0;
}

a.btn-edit:hover,
button.btn-edit:hover,
.btn-edit:hover {
    background: #c8ddd8;
    border-color: #005E50;
    color: #003830;
}

a.btn-delete,
button.btn-delete,
.btn-delete {
    background: #fdecea;
    color: #7a1e1e;
    border-color: #dba8a8;
}

a.btn-delete:hover,
button.btn-delete:hover,
.btn-delete:hover {
    background: #f5c8c8;
    border-color: #c47979;
    color: #5a1313;
}

.inline-form {
    display: block;
    margin: 0;
    padding: 0;
}

.inline-form .btn {
    margin-bottom: 0;
}

.finish-form {
    margin-top: 2em;
    text-align: center;
}

.muted {
    color: #293730;
    font-size: 14px;
}

/* ---------- Lookup status (pets2024) ---------- */

.pets2024-lookup-status {
    margin: 0.6em 0 1em 0;
    padding: 0.7em 1em;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 0.5em;
}

.pets2024-lookup-status.is-searching {
    background: #cee9df;
    border: 1px solid #72ACA0;
    color: #1a4a3a;
}

.pets2024-lookup-status.is-success {
    background: #cee9df;
    border: 1px solid #72ACA0;
    color: #1a4a3a;
}

.pets2024-lookup-status.is-error {
    background: #fdecea;
    border: 1px solid #dba8a8;
    color: #7a1e1e;
}

.pets2024-icon-check {
    color: #005E50;
    font-weight: bold;
    font-size: 16px;
}

.pets2024-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #72ACA0;
    border-top-color: #005E50;
    animation: pets2024-spin 0.7s linear infinite;
}

@keyframes pets2024-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

input.is-searching {
    box-shadow: 0 0 0 3px rgba(0, 94, 80, 0.12);
    transition: box-shadow 0.2s;
}

/* ---------- Pets2024 banner ---------- */

.pets2024-banner {
    margin: 0.6em 0 1em 0;
    padding: 1em;
    background: #fff8e6;
    border: 2px solid #FFB00B;
    border-radius: 8px;
}

.pets2024-banner[hidden] {
    display: none;
}

.pets2024-banner__body {
    flex: 1 1 auto;
}

.pets2024-banner__title {
    margin: 0 0 0.4em 0;
    font-size: 15px;
    color: #5a3a14;
}

.pets2024-banner__hint {
    margin: 0 0 0.8em 0;
    font-size: 13px;
    color: #7a5a34;
}

.pets2024-banner__actions {
    display: flex;
    gap: 0.5em;
    flex-wrap: wrap;
}

.pets2024-banner__accept,
.pets2024-banner__decline {
    float: none;
    margin: 0;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: normal;
    text-transform: none;
    text-shadow: none;
    box-shadow: none;
    border: 1px solid transparent;
    transition: background 0.18s ease, border-color 0.18s ease;
}

.pets2024-banner__accept {
    background: #005E50;
    color: #fff;
    border-color: #005E50;
}

.pets2024-banner__accept:hover {
    background: #003830;
    color: #fff;
    border-color: #003830;
    transform: none;
    box-shadow: none;
}

.pets2024-banner__decline {
    background: #f0f0f0;
    color: #444;
    border-color: #ccc;
}

.pets2024-banner__decline:hover {
    background: #e0e0e0;
    color: #222;
    border-color: #aaa;
    transform: none;
    box-shadow: none;
}

/* ---------- Field attention ---------- */

.field-needs-attention {
    position: relative;
    border: 2px solid #c0392b;
    border-radius: 6px;
    padding: 0.4em 0.6em;
    background: #fdecea;
    margin-bottom: 0.8em;
}

.field-needs-attention > label {
    color: #7a1e1e;
    font-weight: 700;
}

.field-needs-attention ul li label {
    color: #2B3A35;
}

.field-needs-attention::after {
    content: "Uzupełnij to pole — resztę danych wczytaliśmy z bazy.";
    display: block;
    margin-top: 0.3em;
    font-size: 12px;
    color: #7a1e1e;
    font-style: italic;
}

/* ---------- Prefill flash ---------- */

.prefilled-flash {
    animation: pets2024-flash 1.5s ease-out;
}

@keyframes pets2024-flash {
    0%   { background-color: transparent; }
    15%  { background-color: #d4f0d4; }
    100% { background-color: transparent; }
}

.prefilled-note {
    margin: 0.2em 0 0 0;
    font-size: 12px;
    color: #005E50;
    font-style: italic;
}

.prefilled-flash input[type="checkbox"][disabled],
input[type="checkbox"][disabled][data-pets2024-locked="1"] {
    cursor: not-allowed;
}

input[type="checkbox"][disabled][data-pets2024-locked="1"] + label {
    color: #1a4a3a;
    font-style: italic;
}

/* ---------- Misc legacy ---------- */

.wrapper li {
    font-size: 18px;
}

form div:has(> ul[id$="_titlesPreviousYears"]) {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 2px solid #9EC933;
}

label[for=pet_info_normal_form_picture],
label[for=pet_info_normal_form_dateOfBirth] {
    display: block;
    width: 150px;
    margin: 5px 0;
}

#pet_info_normal_form_titlesThisYear {
    margin-bottom: 40px;
}
