.screenshot-container {
    width: 70%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    border-radius: 0.5rem;
    padding: 2rem;
    background-color: var(--color-background);
    color: var(--color-text);
}
  
.screenshot-container .screenshot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 1.25rem;
    border-bottom: .0625rem solid var(--color-separator-border);
}
  
.screenshot-header .header-title {
    font-size: 1.125rem;
    line-height: 1.125rem;
    font-weight: 500;
}
  
.screenshot-header .header-close {
    align-self: end;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 500;
}

.screenshot-container .screenshot-image {
    width: 100%;
    height: 31.25rem;
    overflow-y: auto;
    margin-top: 1.375rem;
}

.screenshot-image img {
    width: 100%;
    height: auto;
}