/* FictionFlock Book Selector Styles */

.ff-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Search Box */
.ff-search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.ff-input {
    flex: 1;
    padding: 12px 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s;
}

.ff-input:focus {
    outline: none;
    border-color: #0073aa;
}

/* Buttons */
.ff-btn {
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.ff-btn-primary {
    background-color: #0073aa;
    color: white;
}

.ff-btn-primary:hover {
    background-color: #005a87;
}

.ff-btn-secondary {
    background-color: #f0f0f1;
    color: #2c3338;
}

.ff-btn-secondary:hover {
    background-color: #dcdcde;
}

.ff-btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

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

.ff-result-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    transition: box-shadow 0.3s;
}

.ff-result-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.ff-result-cover {
    width: 80px;
    height: 120px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}

.ff-no-cover {
    background: #f0f0f1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 12px;
    text-align: center;
}

.ff-result-info {
    flex: 1;
}

.ff-result-title {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #2c3338;
}

.ff-result-author {
    margin: 0 0 10px 0;
    color: #666;
    font-style: italic;
}

.ff-no-results {
    padding: 20px;
    text-align: center;
    color: #666;
    background: #f9f9f9;
    border-radius: 5px;
}

.ff-refine-hint {
    padding: 15px;
    background: #fff8e5;
    border-left: 4px solid #ffb900;
    margin-top: 20px;
    border-radius: 3px;
}

/* Expand Search */
.ff-expand-search {
    margin-top: 20px;
    padding: 15px;
    background: #f0f0f1;
    border-radius: 5px;
    text-align: center;
}

.ff-expand-search a {
    color: #0073aa;
    text-decoration: none;
    font-weight: 600;
}

.ff-expand-search a:hover {
    text-decoration: underline;
}

/* Selected Book */
.ff-selected-book-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    margin-bottom: 30px;
    background: #f9f9f9;
    border-radius: 5px;
    border: 2px solid #0073aa;
}

.ff-selected-cover {
    width: 120px;
    height: 180px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}

.ff-selected-info h3 {
    margin: 0 0 10px 0;
    color: #2c3338;
}

.ff-selected-author {
    color: #666;
    font-style: italic;
    margin: 0;
}

/* Interaction Form */
.ff-interaction-form {
    margin-top: 20px;
}

.ff-interaction-form h3 {
    margin-bottom: 15px;
    color: #2c3338;
}

.ff-form-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

/* Loading Spinner */
.ff-loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.ff-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #0073aa;
    border-radius: 50%;
    animation: ff-spin 1s linear infinite;
}

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

/* WordPress Editor Adjustments */
#ff-editor_ifr {
    min-height: 200px !important;
}

.mce-toolbar-grp {
    background: #f5f5f5 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .ff-search-box {
        flex-direction: column;
    }
    
    .ff-result-item,
    .ff-selected-book-card {
        flex-direction: column;
    }
    
    .ff-result-cover,
    .ff-selected-cover {
        width: 100%;
        max-width: 200px;
        height: auto;
        aspect-ratio: 2/3;
        margin: 0 auto;
    }
    
    .ff-form-actions {
        flex-direction: column;
    }
    
    .ff-btn {
        width: 100%;
    }
}
/* Card grid */
#ff-search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Card container */
.ff-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Cover image */
.ff-card-cover {
    width: 140px;
    height: 210px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* Title */
.ff-card-title {
    font-size: 17px;
    font-weight: 700;
    margin: 5px 0 10px 0;
    line-height: 1.3;
}

/* Author */
.ff-card-author {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* Button */
.ff-btn-small {
    padding: 10px 18px;
    font-size: 14px;
    width: 100%;
}
