.kasikorn-style {
    font-family: 'Kanit', 'Prompt', sans-serif;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.kasikorn-style h3 {
    color: #008c44;
    font-size: 24px;
    margin-bottom: 15px;
}

.kasikorn-style .tag {
    display: inline-block;
    background-color: #008c44;
    color: #ffffff;
    padding: 5px 10px;
    margin: 5px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.kasikorn-style .tag:hover {
    background-color: #006633;
}

.kasikorn-btn {
    background-color: #008c44;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.kasikorn-btn:hover {
    background-color: #006633;
}

#new-tag-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #008c44;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 16px;
}

#tag-preview {
    margin-bottom: 10px;
}

.tag-preview-item {
    display: inline-block;
    background-color: #e0f0e9;
    color: #008c44;
    padding: 5px 10px;
    margin: 0 5px 5px 0;
    border-radius: 20px;
    font-size: 14px;
}

.remove-tag {
    cursor: pointer;
    color: #cc0000;
    font-weight: bold;
    margin-left: 5px;
}

#tag-message {
    margin-top: 10px;
    color: #008c44;
    font-weight: bold;
}

#posts-by-tag {
    margin-top: 20px;
}

#posts-by-tag h4 {
    color: #008c44;
    font-size: 18px;
    margin-bottom: 10px;
}

.posts-list {
    list-style-type: none;
    padding-left: 0;
}

.posts-list li {
    margin-bottom: 10px;
}

.posts-list a {
    color: #008c44;
    text-decoration: none;
    transition: color 0.3s;
}

.posts-list a:hover {
    color: #006633;
}