.ws-content {
    padding-bottom: 50px;
}
.box-title {
    margin: 0 0 15px;
    text-align: center;
}
.post-title h1 {
    margin: 0;
    font-size: 30px;
    font-weight: 700;
}
.entry {
    text-align: center;
}
.entry-form {
    overflow: hidden;
    text-align: center;
    padding: 30px 0 0;
}
.entry-form>form {
    align-items: center;
    display: inline-flex;
    margin-bottom: 0;
}
.entry-form .form-field {
    gap: 30px;
    display: grid;
    align-items: center;
}
.entry-form .form-field.last {
    margin-bottom: 0;
}
.entry-form .form-field .form-label label {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 40px;
}
.entry-form .form-field .form-input {
    display: flex;
    align-items: center;
}
.entry-form .form-field .form-control {
    height: 45px;
    width: 500px;
    font-size: 16px;
    box-shadow: none;
    border-radius: 8px;
    box-shadow: 0px 1px 5px 0px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.2);
    -webkit-box-shadow: 0px 1px 5px 0px rgb(0 0 0 / 20%);
}
.entry-form .form-field .button {
    outline: none;
    color: var(--ws-color-white);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    padding: 10px 50px;
    border-radius: 30px;
    background: var(--ws-color-primary);
    transition: all .3s ease;
    border: 1px solid var(--ws-color-primary);
}
.entry-form .form-field .button:hover {
    color: var(--ws-color-primary);
    background: var(--ws-color-white);
    border-radius: 30px;
}
.result {
    overflow: hidden;
    margin-top: 40px;
    border-radius: 8px;
    border: 1px solid #d3d3d3;
}
.result .table {
    margin: 0;
}
.result .table th {
    border: 0;
    padding: 15px;
    color: var(--ws-color-white);
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    background-color: var(--ws-color-primary);
    border-left: 1px solid white;
}
.result .table th.code {
    border-left: 0;
}
.result .table td {
    padding: 20px 15px;
}
.result .table tr:nth-child(even) td {
    background: #f6f7f8;
}
.result .table .code {
    font-weight: 700;
}
.result .table span.code::before {
    content: "#";
}

@media screen and (max-width: 767px)
{
    .ws-content {
        padding: 10px 10px 30px;
    }
    .breadcrumb {
        margin: 0;
        padding: 0;
        border-radius: 0;
    }
    .breadcrumb .items {
        overflow: hidden;
        flex-wrap: nowrap;
        white-space: nowrap;
    }
    .breadcrumb .items li:last-child {
        color: gray;
        display: block;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .box-title {
        margin: 0;
        padding: 30px 0;
    }
    .box-title .post-title {
        margin-bottom: 0;
    }
    .box-title .post-title h1 {
        font-size: 26px;
        line-height: 1.4;
    }
    .entry-form {
        padding-top: 20px;
    }
    .entry-form>form {
        display: grid;
    }
    .entry-form .form-field .form-control {
        width: 100%;
    }
}

@media screen and (max-width: 400px)
{
    .result .table th {
        padding: 10px;
        text-transform: none;
    }
}