@charset "UTF-8";

body>header {
    background-color: var(--pallet-green);
    padding: 8px 0px 16px;
}

body>header>div.wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.portal-section {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    padding: 1.5em;
    margin-bottom: 2em;
}

.portal-section h2 {
    margin-top: 0;
    margin-bottom: 1em;
    color: var(--pallet-green-font);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1em;
}

.section-header h2 {
    margin: 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1em;
}

.info-grid div {
    padding: 0.5em 0;
}

.dogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5em;
    margin-top: 1em;
}

.dog-card {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    padding: 1em;
    text-align: center;
}

.dog-card h3 {
    margin: 0.5em 0;
    color: var(--pallet-green-font);
}

.dog-card p {
    font-size: 0.9em;
    color: var(--gray);
    margin: 0.5em 0 1em;
}

.dog-safe-status {
    font-size: 0.85em;
    margin: 0.5em 0;
}

.status-yes {
    color: var(--pallet-green-font);
    font-weight: 600;
}

.status-no {
    color: var(--pallet-pink);
    font-weight: 600;
}

.status-unknown {
    color: var(--gray);
    font-style: italic;
}

.dog-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5em;
}

.form-section {
    margin-bottom: 2em;
}

.form-section h2 {
    color: var(--pallet-green-font);
    border-bottom: 2px solid var(--pallet-green);
    padding-top: 0;
    padding-bottom: 0.25em;
    margin-bottom: 1em;
}

.dog-form-entry {
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    padding: 1.5em;
    margin-bottom: 1.5em;
}

.dog-form-entry h3 {
    margin-top: 0;
    color: var(--pallet-green-font);
}

.existing-photo {
    margin: 1em 0;
}

.existing-photo img {
    border-radius: 8px;
    border: 1px solid var(--light-gray);
}

.help-text {
    color: var(--gray);
    font-size: 0.9em;
    margin-bottom: 1em;
}

.text-block {
    margin-left: 1em;
}