body {
    background-color: var(--vscode-editor-background);
}

img {
    max-width: 100%;
}

h2, h3, h4 {
    /*text-decoration: underline;*/
    text-transform: capitalize;
    margin: 2em 0;
}

vscode-panel-tab {
    text-transform: uppercase;
}

#subtitle {
    font-size: 1em;
    color: var(--vscode-textPreformat-foreground);
}

#content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2em;
}

#footer {
    margin: 0;
    padding: 1.5em 0;
    text-align: left;
}

#btn-activate {
    vertical-align: middle;
    margin: 2em 0 1em 0;
}

#features {
    margin: 1em 0.2em;
    white-space: break-spaces;
    display: inline;
}

#features .label {
    color: var(--vscode-textPreformat-foreground);
    font-weight: normal;
}

#features .feature {
    padding: 0;
    white-space: nowrap;
    display: inline;
}

#features .dimmed {
    color: var(--vscode-disabledForeground);
    /*text-decoration: line-through;*/
}

.features .column {
    margin: 16px;
    padding: 0;
    border: 2px solid var(--vscode-activityBar-background);
}
.features h2 {
    text-align: center;
    font-size: 1.2em;
    padding: 6px;
    margin: 0;
    text-transform: uppercase;
    background-color: var(--vscode-activityBar-background);
}
.features ul li {
    list-style-type: circle;
}
.features ul li a {
    text-decoration: none;
}
.features .btn-buy {
    text-transform: uppercase;
    margin-left: 24px;
}

.row {
    display: flex;
}

.column {
    flex: 50%;
}

.column-25 {
    flex: 25%;
}

.above-footer {
    margin:2em 0;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.v-middle {
    vertical-align: middle;
}

.hidden {
    display: none;
}

.banner, .license-status {
    padding: 1em;
    background-color: var(--vscode-activityBar-background);
}
.license-status {
    margin: 0 16px;
}
div.welcome-row {
    border-bottom: 2px solid #f0f0f033;
    font-size: 1.2em;
    align-items: center; /* Centers vertically */
    border-right: 6px solid #bbbbbb00;
}

div.premium-box {
    position: relative;
    border-right: 6px solid #bbbbbbff !important; /* Narrow grayed right border */
}

.premium-label {
    position: absolute;
    top: 50%;
    right: -20px; /* Adjust positioning */
    transform: translateY(-50%) rotate(90deg);
    font-size: 14px;
    font-weight: bold;
    color: #888; /* Gray text */
    letter-spacing: 1px;
}

/* SWITCH */
/* Hide the default checkbox */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider (background) */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    border-radius: 26px;
    transition: 0.3s;
}

/* The circle (toggle button) */
.slider::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

/* Checked state: change background and move toggle */
input:checked + .slider {
    background-color: #4CAF50;
}

input:checked + .slider::before {
    transform: translateX(24px);
}