﻿.profile-box {
    height: 500px;
    width: 700px;
    grid-row: 3;
    grid-column: 5;
    background: rgba(15, 23, 41, 0.8) 48%;
    box-shadow: 2px 2px 8px 1px rgb(0, 0, 0);
    padding: 20px;
    border-radius: 16px;
    color: #fff
}
.profile-grid{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(7, 1fr);
    width: 100%;
    height: 100%;
}
.profile-image {
    width: 256px;
    height: 256px;
    border-radius: 50%;
    overflow: hidden;
    grid-column: 4;
    box-shadow: 2px 2px 8px 1px rgb(0, 0, 0);
}
.hidden-file {
    display: none;
}
.profile-image {
    position: relative;
    display: inline-block;
}

.edit-btn {
    display: flex;
    flex-direction: row;
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255,255,255,0.4);
    color: white;
    border: none;
    border-radius: 5px;
    width: 70px;
    height: 30px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-name{
    grid-row: 2;
    grid-column: 4;
    place-self: center;
    font-size: 24px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.profile-divider{
    width: 100%;
    height: 1px;
    grid-row: 3;
    grid-column: 1/8;
    box-shadow: 1px 1px 5px rgb(255, 255, 255);
}
.profile-changes {
    height: 240px;
    width: 700px;
    grid-row: 4;
    grid-column: 5;
    background: rgba(15, 23, 41, 0.8) 48%;
    box-shadow: 2px 2px 8px 1px rgb(0, 0, 0);
    padding: 20px;
    border-radius: 16px;
    color: #fff;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center
}
.changes-box {
    width: 270px;
    height: 55px;
    background-color: rgb(128, 128, 128, 0.2);
    border-radius: 8px;
    box-shadow: 2px 2px 8px 1px rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    padding: 8px 0px 0px 8px;
    gap: 5px;
    align-content: center;
}

.changes-box h4 {
    margin: 0;
}

.input-profile {
    color: var(--basic-white);
    width: 150px;
    height: 23px;
    padding-left: 5px;
    border: none;
    background-color: transparent;
    border: 1px solid var(--basic-white);
    border-radius: 8px;
}

    .input-profile:focus {
        outline: none;
        border: 1px solid #FF0000;
        box-shadow: 0 0 2px 2px rgba(176, 0, 1, 0.8);
    }

.input-field {
    display: flex;
    gap: 1rem;
}