:root {
    --white-color: #f8faf8;
    --accent-color: #009846;
    --accent-darker-color: #007637;

    --text-color: #1b201b;
    --muted-color: #5b655b;
}

*[data-component="page"] *[data-component="container"],
#properties *[data-component="container"] {
    border: 1px solid var(--muted-color);
}

*[data-component="page"] * {
    user-select: none;
    -webkit-user-select: none;
}

*[data-component] {
    font-size: 14px;
    color: var(--text-color);
    border-radius: 0;
    margin: 0;
    padding: 0;
    position: static;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
}

*[data-component="page"] {
    width: 100%;
    height: 100%;
}

*[data-component="container"] {
    display: flex;
    flex-direction: column;
    align-items: start;
    min-height: 50px;
    width: 100%;
    padding: 20px;
    gap: 10px;
}

*[data-component="text"] {
    font-size: 16px;
}

*[data-component="link"] {
    font-size: 16px;
    color: var(--accent-color);
    transition: color 0.3s;
}

*[data-component="link"] :not(*) {
    word-break: break-all;

}

*[data-component="link"]:hover {
    color: var(--accent-darker-color);
}

*[data-component="title1"],
*[data-component="title2"],
*[data-component="title3"] {
    color: var(--accent-color);
    font-family: "Times New Roman";
    padding-bottom: 10px;
    font-weight: 100;
}

*[data-component="title1"] {
    font-size: 38px;
    line-height: 38px;
    padding-bottom: 15px;
}

*[data-component="title2"] {
    font-size: 23px;
}

*[data-component="title3"] {
    font-size: 20px;
}

*[data-component="button"] {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    border: 1px solid var(--text-color);
    border-radius: 5px;
    background: var(--accent-color);
    color: var(--white-color);
    font-size: 16px;
    padding: 10px;
    width: fit-content;
}

*[data-component="button"][disabled] {
    background-color: var(--muted-color);
}

*[data-component="button"]:hover {
    background: var(--accent-darker-color);
}

*[data-component="image"] {
    width: 100%;
    min-width: 50px;
    min-height: 50px;
    border: 1px solid var(--muted-color);
}

*[data-component="image"]::before {
    display: none;
}

*[data-component="table"] {
    min-height: 50px;
    min-width: 50px;
}

*[data-component="table"],
th,
td {
    border: 1px solid black;
}

*[data-component="loop"] {
    border: 1px solid red;
    min-height: 50px;
    min-width: 50px;
}
