/* Besterz Grabber Frontend Styles */

.besterz-grabber-container {
    max-width: 600px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.besterz-grabber-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.besterz-grabber-card h2 {
    margin-top: 0;
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
}

.besterz-grabber-card > p {
    color: #666;
    margin-bottom: 20px;
}

/* Form Styles */
.besterz-search-form {
    margin: 20px 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

/* Button Styles */
.besterz-search-btn {
    width: 100%;
    padding: 12px;
    background: #007cba;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.besterz-search-btn:hover {
    background: #005a87;
}

.besterz-search-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Refresh Note */
.refresh-note {
    font-size: 12px;
    color: #999;
    margin-top: 10px;
    margin-bottom: 0;
}

/* Results Styles */
.besterz-results {
    margin-top: 30px;
}

.besterz-results-list {
    margin-top: 20px;
}

.besterz-result-item {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 15px;
}

.besterz-result-item h3 {
    margin-top: 0;
    color: #007cba;
    font-size: 18px;
}

.besterz-result-item p {
    margin: 8px 0;
    color: #333;
    font-size: 14px;
}

.besterz-result-item strong {
    color: #555;
}

.besterz-actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.besterz-download-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.besterz-download-btn:hover {
    background: #218838;
    text-decoration: none;
}

/* Error Message */
.error-msg {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 12px;
    border-radius: 4px;
    margin-top: 20px;
}

/* Loader */
.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007cba;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Footer */
.besterz-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    font-size: 12px;
    color: #999;
}

.besterz-footer a {
    color: #007cba;
    text-decoration: none;
}

.besterz-footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .besterz-grabber-card {
        padding: 20px;
    }

    .besterz-grabber-card h2 {
        font-size: 20px;
    }

    .form-group input,
    .besterz-search-btn {
        font-size: 16px;
    }
}
