.widget_window {
    position: absolute;
    top: 30%;
    width: 90%;
    left: 3.5%;
    display: none; /*Change to flex when visible*/
    flex-direction: column;
    border: none;
    border-radius: 18px;
    background-color: #022C92;
    padding: 25px;
    box-shadow: 5px 5px 3px #BAC0CB;
}

.title-container {
    display: flex;
    flex: 1;
    width: 100%;
}

.content-title {
    flex: 1; 
    font-family: "NotoSans-Bold";
    font-size: 24px;
    color: #FCFCFC;
    margin: 0px;
    padding-bottom: 25px;
}

.content-info-container {
    display: flex;
    flex-direction: column;
}

.image-button-column {
    display: flex;
    flex-direction: column;
}

.main-row {
    display: flex;
}

.content-info-image-container {
    width: 240px;
    height: 180px;
    border: none;
    border-radius: 18px;
    margin-bottom: 20px;
    margin-right: 50px;
}

.content-info-image {
    height: 100%;
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
}

.content-info-description-container {
    display: flex;
    flex-direction: column;
}

.content-info-author-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.content-info-author-image {
    height: 24px;
    width: 24px;
    border-radius: 100%;
}

.content-info-author-text {
    font-family: "NotoSans-Regular";
    font-size: 12px;
    color: #FCFCFC;
    padding-right: 10px;
    padding-left: 5px;
}

.content-info-description-text-container {
    display: flex;
    flex: 2;
    height: auto;
}

.content-info-description {
    font-family: "NotoSans-Medium";
    font-size: 18px;
    color: #FCFCFC;
}

.download-button {
    width: 240px;
    height: 29px;
    border: none;
    border-radius: 8px;
    background-color: #ffc400;
    transition:
        background-color 0.6s;
}

.download-button:hover {
    background-color: #ff1300;
    cursor: pointer;
}

.close-button {
    width: 29px;
    height: 29px;
    border: none;
    border-radius: 8px;
    justify-self: end;
    background-color: #ffc400;
    transition:
        background-color 0.6s;
}

.close-button:hover {
    background-color: #ff1300;
    cursor: pointer;
}
