.fcoa-search-shortcode {
    text-align: center;
    background-color: #ffffff;
    padding: 20px;
    margin: 20px auto;
    font-size: 1rem;
}

#fcoa-search-form label {
    display: none;
}

#fcoa-search-form input {
    display: block;
    margin: 10px auto;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 8px;
    text-align: center;
}

#fcoa-search-form button {
    display: block;
    margin: 10px auto;
    position: relative;
    display: inline-block;
    padding: 6px 12px;
    background-color: #515e6f;
    color: #ffffff;
    font-size: 1.125rem;
    border: 2px solid #515e6f;
    border-radius: 4px;
    cursor: pointer;
    z-index: 1;
    transition: all 0.2s ease;
}

#fcoa-search-root.loading button[type=submit]:after {
    content: '';
    display: block;
    position: absolute;
    left: 110%;
    top: 5px;
    width: 20px;
    height: 20px;
    border: 5px solid #515e6f;
    border-bottom-color: #fb0020;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 

#fcoa-search-form button:hover {
    opacity: 0.8;
}

.fcoa-search-shortcode .error-wrapper p {
    color: #fb0020;
    font-weight: bold;
}

.fcoa-search-shortcode .result-wrapper table {
    width: 100%;
    margin-bottom: 20px;
}

.fcoa-search-shortcode .result-wrapper table th {
    width: 40%;
    font-weight: bold;
    text-align: right;
    padding: 10px;
    background-color: #f7f7f9;
}

.fcoa-search-shortcode .result-wrapper table td {
    padding: 10px 20px;
    text-align: left;
    background-color: #f7f7f9;
}