#mm-website-checker-form-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border: none;
    box-shadow: none;
}
#mm-website-checker-form-container h2 {
    color: #333;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}
#mm-website-checker-form-container p {
    text-align: center;
    color: #666;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #666;
    font-size: 14px;
}
.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}
.button {
    width: auto;
    padding: 10px 20px;
    background-color: #e17f38;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    display: inline-block;
    text-align: center;
    margin-top: 10px;
}
.button:hover {
    background-color: #c96b2e;
}
#mm-website-checker-results {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #fefefe;
    display: none;
}
.result-item {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}
.result-item:last-child {
    border-bottom: none;
}
.result-item span {
    font-weight: bold;
}
.status-ok {
    color: green;
}
.status-warning {
    color: orange;
}
.status-error {
    color: red;
}
.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}
.loading-spinner::after {
    content: "";
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #e17f38;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}