/* --------- STRUCTURE --------- */
.center {
    align-self: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    position: relative;
    width: 80vw;
    padding-bottom: 2rem;
    border-radius: 1rem;
    /*background-color: rgba(255, 255, 255);*/
}

/*body::after {*/
/*    content: "";*/
/*    position: sticky;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 200px;*/
/*    background: url('../assets/flower-border.gif') repeat-x;*/
/*    background-size: auto 100%;*/
/*    pointer-events: none;*/
/*    border-radius: 1rem;*/
/*}*/

.column {
    display: flex;
    flex-direction: column;
}

.entry-list-item {
    list-style: none;
    margin-bottom: 0.75rem;
}

.entry-list-link {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    text-decoration: none;
    border-left: 2px dashed #4c4c7c;
    padding-left: 0.6rem;
    transition: border-color 0.2s ease;
}

.entry-list-link:hover {
    border-color: #ababf2;
}

.entry-list-title {
    font-size: 0.9rem;
    color: #4c4c7c;
    text-transform: lowercase;
}

.entry-list-date {
    font-size: 0.75rem;
    color: #888;
    font-style: italic;
}

.fullw {
    width: 100%;
}

.header {
    width: 100%;
    justify-content: space-evenly;
}

.hidden {
    display: none;
    opacity: 0;
    overflow: hidden;
}

.inline {
    display: inline-flex;
    align-items: center;
}

.margin {
    margin: 1rem;
}

.margin-none {
    margin: 0;
}

.margin-small {
    margin: 0.5rem;
}

.outline {
    border-radius: 1rem;
    border: 2px dashed #c4bce6;
}

.padding {
    padding: 1rem;
}

.pet-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
}

.small {
    width: 12vw !important;
}

.stretch {
    width: 100%;
}

.text-small {
    font-size: 0.8rem;
}

/* --------- COLUMNS --------- */
#left-column {
    width: 65%;
    border-radius: 1rem;
    /*padding: 1.5rem;*/
}

#left-column > .content-container {
    width: 100%;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 1rem;
    border: 2px dashed #c4bce6;
    padding: 1rem;
}

#right-column {
    width: 35%;
    margin-left: 1.5rem;
}

.right-column-container {
    background-color: white;
    display: flex;
    flex-direction: column;
    border-radius: 1rem;
    height: fit-content;
    margin: 0 0 1.5rem 0;
    padding: 1rem;
    border: 2px dashed #c4bce6;
}

.right-column-container:last-child {
    margin-bottom: 1.5rem;
}