:root {
    --theme-color: black;
}

.site-url-label {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #999;
    pointer-events: none;
    width: 127px;
    padding-left: 10px;
}

.site-url-input {
    padding-left: 137px;
}

.t-app {
    box-sizing: border-box;
    padding: 70px 10px;

    padding-bottom: 20px;
}

.t-container-preview {
    border: 2px solid black;
    padding: 10px;
    min-height: 600px;
}

.t-container {
    box-sizing: border-box;

    max-width: 320px;
    width: 100%;
}

.t-container>* {
    margin-bottom: 20px;
}

.text-default {
    white-space: pre-line;
}

.image-circle {
    border-radius: 100%;
}

.image-rounded {
    border-radius: 15px;
}

.t-link-wrapper {
    display: flex;
    width: 100%;
}

.t-link {
    width: 100%;
    padding: 10px 12px;
    text-align: center;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);

    font-size: 16px;
}

.t-link:focus,
.t-link:hover {
    color: var(--theme-color);
    text-decoration: none;
}

.t-form-wrapper {
    box-sizing: border-box;
    width: 100%;
    padding: 20px;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);

    display: flex;
    flex-direction: column;
}

.t-form-wrapper>* {
    margin-bottom: 20px;
}

.t-form-wrapper>*:last-child {
    margin-bottom: 0px;
}

.t-form-title {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

.t-button {
    background: var(--theme-color);
    border: 1px solid var(--theme-color);
    padding: 10px 12px;
    color: white;

    font-size: 16px;
}

.t-input {
    border: 1px solid var(--theme-color);
    padding: 10px 12px;

    font-size: 16px;
}

.t-space-y>*+* {
    margin-top: 10px;
}

.t-text-input {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    color: #666;
    border: 0;

    width: 100%;
    margin-bottom: 5px;
}

.t-text-input:focus,
t-text-input:hover {
    outline: none;
}

.space-y>*+* {
    margin-top: 8px;
}

.space-x>*+* {
    margin-left: 8px;
}

.border-y>*+* {
    border-top: 1px solid #e5e5e5 ;
}

.kanban-grid {
    display: inline-grid;
    gap: 8px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    overflow-x: auto;
    height: 100%;
}