.modal {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.43);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.displayFlex {
    display: flex;
}

.modal-content {
    width: 96vw;
    border-radius: 8px;
    height: 100vh;
    max-width: 1920px;
    max-height: 1920px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.detailed-card {
    color: white;
    background-image: url(../assets/img/Background-secondary.png);
    padding: 16px 16px 16px 16px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    height: 80vh;
    width: fit-content;
    max-width: 446px;
    justify-content: center;
    align-items: center;
    max-height: max-content;

}

@media(max-width:500px) {
    .detailed-card {
        max-height: 72vh;
    }
}

.detailed-card-pic {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.detailed-card-img {
    max-width: 446px;
    width: 80vw;
    border-radius: 8px;
    max-height: 256px;
    height: 50vh;
}

.detailed-card-title {
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
}

.detailed-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: max-content;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 255, 0.584) rgba(0, 0, 255, 0.063);
}

#close-modal-button {
    font-size: 24px;
    display: flex;
    flex-direction: row;
    justify-content: right;
    color: white;
    max-width: 446px;
    width: 80vw;
}

#close-modal-button:hover {
    text-decoration: underline;
    cursor: pointer;
}

#technologie-stack {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.techstack-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.techstack-icons {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.detailed-card-comment-sect {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 441px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 255, 0.584) rgba(0, 0, 255, 0.063);
    width: 56%;
    padding-left: 16px;
}

.url,
.status,
.optimization {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.url-text,
.status-text,
.optimization-text {
    width: 80px;
}

@media(max-width:500px) {

    .url,
    .status,
    .optimization {
        flex-direction: column;
        gap: 8px;
    }

    #technologie-stack {
        flex-direction: column;
        gap: 8px;
    }
}

#commentSection {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 255, 0.584) rgba(0, 0, 255, 0.063);
    width: 40vw;
    display: flex;
    flex-direction: column;
    height: 420px;
    max-height: 420px;
    gap: 16px;
    max-width: 600px;

}

.inputComment {
    height: 80px;
    width: 39vw !important;
    max-width: 40vw !important;
    font-size: 14px !important;
    overflow: auto;
    max-width: 96% !important;
}

#postComment {
    width: 128px;
}

.commentCard {
    color: white;
    background-color: #0f3654;
    padding: 12px 12px 12px 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    height: 48px;
    max-height: 48px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 255, 0.584) rgba(0, 0, 255, 0.063);
    min-height: 48px;
}

#description {
    display: flex;
    flex-direction: column;
    gap: 8px;
}