.workoutsedition {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 20px;
    height: 100%;
}

.workoutsedition .title {
    font-family: "Metropolis Bold";
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.24px;
    color: #0d4962;
}

.workoutsedition .subtitle,
.workoutsedition .info,
.workoutsedition .attachFileContainer .text {
    font-family: "Metropolis Semi Bold";
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.14px;
    color: #0d4962;
    margin-top: 24px;
}

.workoutsedition .info {
    font-family: "Metropolis Regular";
    margin-top: 5px;
}

.workoutsedition .attachFileContainer {
    display: flex;
    align-items: center;
    height: 46px;
    background-color: #fff;
    border-radius: 8px;
    width: 50%;
    margin-top: 5px;
    padding: 5px;
}

.workoutsedition .attachFileContainer .attachIcon {
    background-image: url("https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/attach_icon_blue_BO_v1.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
}

.workoutsedition .attachFileContainer .text {
    font-family: "Metropolis Regular";
    margin-top: 0;
    margin-left: 5px;
}

.workoutsedition .selectedFileContainer {
    display: flex;
    align-items: center;
    border: 1px solid #aed8eb;
    border-radius: 8px;
    margin-top: 10px;
    padding: 2px;
    width: fit-content;
}

.workoutsedition .selectedFileContainer.hide {
    visibility: hidden;
}

.workoutsedition .selectedFileContainer .jpgIcon {
    background-image: url("https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/jpg_icon_blue_BO_v1.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
}

.workoutsedition .selectedFileContainer .fileName {
    font-family: "Metropolis Regular";
    font-size: 12px;
    letter-spacing: 0.15px;
    color: #0d4962;
    margin-inline: 5px;
}
.workoutsedition .selectedFileContainer .deleteFile {
    background-image: url("https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/close_icon_blue_BO_v1.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
}

.workoutsedition .buttonContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    align-items: center;
    margin: 32% 0 0 0;
}

.workoutsedition .buttonContainer .submitButton {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 42px;
    font-family: "Metropolis Bold";
    letter-spacing: 0.17px;
    color: white;
    font-size: 13px;
    margin-top: 30px;
    text-transform: uppercase;
    border-radius: 8px;
    background-color: #0d4962;
    cursor: pointer;
}

.workoutsedition .buttonContainer .cancelButton {
    font-family: "Metropolis Bold";
    font-size: 13px;
    letter-spacing: 0.17px;
    color: #0d4962;
    margin-top: 20px;
    cursor: pointer;
}

/* DARK MODE */
.dark .workoutsedition .title,
.dark .workoutsedition .subtitle,
.dark .workoutsedition .info,
.dark .workoutsedition .attachFileContainer .text,
.dark .workoutsedition .selectedFileContainer .fileName,
.dark .workoutsedition .cancelButton {
    color: #fff;
}
.dark .workoutsedition .attachFileContainer {
    background-color: #0d4962;
}
.dark .workoutsedition .attachFileContainer .attachIcon {
    background-image: url("https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/attach_icon_white_BO_v1.svg");
}
.dark .workoutsedition .selectedFileContainer .jpgIcon {
    background-image: url("https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/jpg_icon_white_BO_v1.svg");
}
.dark .workoutsedition .selectedFileContainer .deleteFile {
    background-image: url("https://d1gq9jzbezk7fw.cloudfront.net/p/en_US/gv/i/close_icon_accessibility_BO_v1.svg");
}
