/**
 * Scholarships Q&A Search Styles
 */

/* Search Container */
.schoqase-search-container {
    margin: 20px 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #333;
    max-width: 100%;
    box-sizing: border-box;
}

/* Search Term Attribution */
.schoqase-search-attribution {
    margin-bottom: 15px;
    font-size: 13px;
    text-align: right;
}

.schoqase-search-attribution a {
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
}

.schoqase-search-attribution a:hover {
    text-decoration: underline;
}

/* Search Form */
.schoqase-search-form {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.schoqase-search-input {
    flex: 1;
    min-width: 200px;
    padding: 10px 15px;
    border: none;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
}

.schoqase-search-input:focus {
    outline: none;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.schoqase-search-button {
    padding: 10px 20px;
    border: none;
    background-color: #0073aa;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.schoqase-search-button:hover {
    background-color: #005f8b;
}

.schoqase-search-button:focus {
    outline: none;
    box-shadow: 0 0 0 1px #fff, 0 0 0 3px #0073aa;
}

/* Search Results */
.schoqase-search-results {
    margin-top: 20px;
    display: none;
}

.schoqase-results-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    color: #23282d;
}

.schoqase-result-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.schoqase-result-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.schoqase-result-item:last-child {
    border-bottom: none;
    margin-bottom: 10px;
}

.schoqase-result-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.schoqase-result-link {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.schoqase-result-link:hover {
    color: #00a0d2;
    text-decoration: underline;
}

.schoqase-result-excerpt {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 5px;
}

/* Highlight search terms */
.schoqase-highlight {
    background-color: #ff3; /* Bright yellow */
    color: #000 !important; /* Force black text */
    padding: 0 3px;
    font-weight: bold !important; /* Force bold text */
    border-radius: 3px;
    border: 1px solid #f90; /* Orange border */
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    display: inline-block;
    margin: 0 1px;
    text-decoration: none !important; /* Prevent underlines from links */
    position: relative;
    z-index: 1; /* Ensure highlights appear above other content */
}

.schoqase-result-url {
    font-size: 12px;
    color: #666;
    word-break: break-all;
}

/* Footer */
.schoqase-search-footer {
    margin-top: 15px;
    text-align: right;
    font-size: 12px;
    color: #666;
}

.schoqase-search-footer a {
    color: #0073aa;
    text-decoration: none;
}

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

/* Loading and Error States */
.schoqase-loading,
.schoqase-error,
.schoqase-no-results {
    padding: 15px;
    text-align: center;
    border-radius: 4px;
}

.schoqase-loading {
    background-color: #f9f9f9;
    color: #666;
}

.schoqase-error {
    background-color: #f8d7da;
    color: #721c24;
}

.schoqase-no-results {
    background-color: #f8f9fa;
    color: #666;
    padding: 20px;
}

/* Responsive */
@media (max-width: 500px) {
    .schoqase-search-form {
        flex-direction: column;
    }
    
    .schoqase-search-input {
        width: 100%;
        border-bottom: 1px solid #ddd;
    }
    
    .schoqase-search-button {
        width: 100%;
    }
}

/* Widget Specific Styles */
.widget .schoqase-search-container {
    margin: 0;
}

.widget .schoqase-result-title {
    font-size: 15px;
}

.widget .schoqase-result-excerpt {
    font-size: 13px;
}