.llms-url-checker-container {
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.llms-url-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.llms-url-input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.llms-url-input:focus {
    outline: none;
    border-color: #ecca5b;
    box-shadow: 0 0 0 1px #ecca5b;
}

.llms-submit-btn {
    padding: 10px 20px;
    background: #ecca5b;
    color: #080808;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}

.llms-submit-btn:hover:not(:disabled) {
    background: #080808;
}

.llms-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.llms-url-result {
    margin-top: 15px;
}

.llms-progress {
    margin-bottom: 15px;
}

.llms-progress-status {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.llms-progress-bar {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.llms-progress-fill {
    height: 100%;
    background: #ecca5b;
    transition: width 0.3s ease;
    border-radius: 4px;
}

.llms-results-content {
    background: white;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    color: #333;
}

.llms-result-item {
    margin-bottom: 10px;
    font-size: 14px;
    color: #333 !important;
}

.llms-label {
    font-weight: 600;
    color: #333;
}

.llms-status {
    font-weight: 500;
}

.llms-success {
    color: #46b450;
}

.llms-warning {
    color: #ffb900;
}

.llms-error {
    color: #dc3232;
}

.llms-issues {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.llms-issues h4 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #333;
}

.llms-issues ul {
    margin: 0;
    padding-left: 20px;
}

.llms-issues li {
    margin-bottom: 5px;
    font-size: 13px;
    color: #666;
    list-style-type: disc;
}

.llms-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    padding: 10px;
    border-radius: 4px;
    color: #991b1b;
    font-size: 14px;
}

.llms-plugin-recommendation {
    margin-top: 20px;
    padding: 20px;
    background: #ecca5b24;
    border: 1px solid #ecca5b;
    border-radius: 6px;
    text-align: center;
}

.llms-plugin-recommendation h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #080808;
}

.llms-plugin-recommendation p {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

.llms-plugin-button {
    display: inline-block;
    padding: 12px 24px;
    background: #ecca5b;
    color: #000000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.llms-plugin-button:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: white;
    text-decoration: none;
}

@media (max-width: 480px) {
    .llms-url-form {
        flex-direction: column;
    }

    .llms-submit-btn {
        width: 100%;
    }

    .llms-plugin-button {
        display: block;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
}