/*New*/
.btn-nav-eventopage {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: 1px solid rgb(224,224,224);
    border-radius: 6px;
    padding: 8px 10px;
    margin-right: 16px;
    cursor: pointer;
}

@keyframes hoverBtn {
    from {background-color: transparent;}
    to {background-color: rgb(224,224,224);}
}

.btn-nav-eventopage:hover {
    animation: hoverBtn 0.4s ease-in 0s forwards;
}

.icon-btn-nav-eventopage {
    width: 18px;
    margin-right: 8px;
}

.title-btn-nav-evento-page {
    font-size: 15px;
}

.header-eventopage {
    width: 100%;
}

.icon-header-eventopage-box {
    padding: 8px;
    border: 1px solid rgb(224,224,224);
    border-radius: 6px;
    margin-right: 12px;
    cursor: pointer;
}

@keyframes hoverBtnType {
    from{box-shadow: none;}
    to{
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 15px 0 rgba(0, 0, 0, 0.19);
    }
}

.icon-header-eventopage-box:hover {
    animation: hoverBtnType 0.6s ease 0s forwards;
}

.icon-header-eventopage {
    width: 24px;
}

.title-header {
    font-size: 18px;
    color: rgb(104,104,104);
    margin-right: 10px;
}

.title-header-divider {
    font-size: 16px;
    color: rgb(164,164,164);
    margin-right: 14px;
}

.title-header-type {
    font-size: 18px;
    color: rgb(24,24,24);
    margin-right: 14px;
}

.btn-type {
    padding: 8px 10px;
    border-radius: 12px;
    color: #000;
    border: none;
    background: transparent;
    font-size: 18px;
}

.btn-type:hover {
    animation: hoverBtnType 0.6s ease 0s forwards;
}

.gallery-container {
    width: 100%;
    height: fit-content;
    padding: 24px 0px;
    display: grid;
    justify-content: start;
    grid-template-columns: auto auto auto auto;
    column-gap: 18px;
    row-gap: 24px;
}

.info-container {
    width: 100%;
    height: fit-content; 
    padding: 24px 0px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.info-section {
    width: 100%;
    height: fit-content;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
}

.info-section-inputs {
    width: 70%;
    min-height: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    margin-bottom: 8px;
}

.info-section-input-label {
    width: 35%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.info-section-input-div {
    width: 65%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
}

.info-section-inputs-divider {
    width: 100%;
    height: 1.5px;
    background-color: rgb(244,244,244);
    margin: 16px 0px;
}

.input-info {
    width: 100%;
    border: 1px solid rgb(224,224,224);
    border-radius: 6px;
    padding: 6px 8px;
}

.input-label {
    font-size: 18px;
    line-height: 0%;
    margin-bottom: 6px;
}

.input-description {
    font-size: 14px;
    color: rgb(184,184,184);
}

.gallery-item-box {
    width: 350px;
    height: 350px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 0px;
}

.gallery-item {
    width: 100%;
    height: 100%;
    border-radius: 24px;
}

.gallery-item-photo {
    width: 100%;
    border-radius: 24px 24px 0px 0px;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.gallery-item-photo-row-btns {
    width: 100%;
    height: fit-content;
    padding: 18px;
    border-radius: 24px 24px 0px 0px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.btn-action-gallery-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: rgb(0,0,0,0.2);
    border-radius: 6px;
    padding: 8px;
    cursor: pointer;
}

.icon-btn-action-gallery-item {
    width: 15px;
}

.gallery-item-info-div {
    width: 100%;
    height: 10%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    border-radius: 0px 0px 24px 24px;
    border-top: 1px solid rgb(224,224,224);
}

.gallery-item-info-user {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    padding-left: 10px;
}

.gallery-item-info-media {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    padding-right: 14px;
}

.icon-user-gallery-item-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    aspect-ratio: 1/1;
    margin-right: 6px;
}

.gallery-item-info-text {
    font-size: 14px;
}

.icon-user-gallery-item-info-mediatype {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    aspect-ratio: 1/1;
}
.top-button-container {
    position: absolute;
    top: 10px;
    right: 10px;
}

.btn-submit {
    padding: 3px 30px; /* Define o tamanho do botão */
    background-color: #001730; /* Cor de fundo */
    color: #fff; /* Cor do texto */
    border: none; /* Remove bordas padrão */
    border-radius: 4px; /* Bordas ligeiramente arredondadas */
    font-size: 16px; /* Tamanho da fonte */
    cursor: pointer; /* Ícone de cursor ao passar o mouse */
    transition: background-color 0.3s ease; /* Animação ao passar o mouse */
}

.btn-submit:hover {
    background-color: #0056b3;
}