.dashboard-root {
    width: 100vw;
    height: 100vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-color: var(--bg-color);
}

/*for pc screens*/
@media only screen and (min-width: 600px) {
    .dashboard-header {
        width: 100%;
        height: 10%;

        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;

        background-color: var(--fg-color);

        border-bottom: solid 2px rgb(228, 228, 228);
    }
}


/*for mobile screens*/
@media only screen and (max-width: 600px) {
    .dashboard-header {
        width: 100%;
        height: 20%;

        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;

        background-color: var(--fg-color);

        border-bottom: solid 2px rgb(228, 228, 228);
    }
}

.dashboard-info {
    width: 40%;
    height: 100%;
    margin-right: 15px;
    margin-left: 10px;

    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
}

.dashboard-title {
    font-size: 20px;
    font-weight: bold;
}

.identify-pet-page-link {
    padding: 10px;
    font-size: 16px;
    Font-weight: medium;
    color: white;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: linear-gradient(to right, rgb(87, 87, 255), rgb(189, 67, 189));

    margin-right: 15px;
}

.identify-pet-page-link:hover{
    cursor:pointer;
}

.sign-out-button {
    padding: 10px;
    font-size: 16px;
    Font-weight: medium;
    color: Black;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    border-radius: 10px;
    background-color: lightgrey;

    margin-right: 10px;
}

.sign-out-button:hover{
    cursor:pointer;
}

.tools-section {
    width: 50%;
    min-width: 360px;
    height: 10%;

    display: flex;
    flex-direction: row;
    align-items: center;

    background-color: var(--bg-color);
}

.your-pets {
    font-size: 18px;
    font-weight: bold;
}

.add-new-pet-page-link {
    padding: 10px;
    font-size: 16px;
    Font-weight: medium;
    color: white;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: linear-gradient(to right, rgb(73, 112, 184), rgb(146, 67, 199));

    margin-left: auto;
}

.add-new-pet-page-link:hover{
    cursor:pointer;
}

.pets-list {
    width: 100%;
    height: 80%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;

    background-color: var(--bg-color);

    overflow-y: auto;
    overflow-x: hidden;
}

.pet-record {
    width: 50%;
    min-width: 360px;
    height: 200px;
    padding: 10px;

    background-color: var(fg-color);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 20px;
    box-shadow: var(--panel-shadow);

    margin:12px;
}

.edit-tools {
    width: 100%;
    height: 40px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
}

.edit-pet-button {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: blue;

    border-radius: 5px;

    background-color: rgb(157, 208, 255);
}

.pet-info {
    width: 100%;
    height: 160px;
    padding: 10px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    border-radius: 20px;
}

.pet-picture {
    width: 86px;
    height: 86px;

    margin-right: 10px;
    object-fit: cover;
    border-radius: 50%;
}

.pet-data {
    width: calc(100% - 106px);
    height: 100%;

    padding: 10px;

    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: start;
}

.pet-name {
    font-size:18px;
    font-weight:bold;
}