/* Blog Formatter Frontend Styles */

/* Custom content sections */
.bf-custom-content {
    padding: 20px 0;
}

.bf-about-section,
.bf-popular-section,
.bf-recent-section {
    margin-bottom: 30px;
}

.bf-about-section h3,
.bf-popular-section h3,
.bf-recent-section h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #0073aa;
    padding-bottom: 8px;
}

.bf-about-section p {
    line-height: 1.6;
    color: #666;
}

.bf-post-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bf-post-list li {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
}

.bf-post-list li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #0073aa;
}

.bf-post-list a {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bf-post-list a:hover {
    color: #005177;
    text-decoration: underline;
}

/* Search Bar Styles */
.bf-search-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto -20px auto !important;
    padding: 0 20px;
    position: relative;
    z-index: 1000;
    box-sizing: border-box;
}

.bf-search-wrapper {
    position: relative;
}

.bf-search-input {
    width: 100%;
    padding: 12px 20px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 25px;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.bf-search-input:focus {
    border-color: #0073aa;
    box-shadow: 0 4px 10px rgba(0,115,170,0.2);
}

.bf-search-input::placeholder {
    color: #999;
}

/* Search Results Dropdown */
.bf-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-top: -1px;
}

.bf-search-results.active {
    display: block;
}

.bf-search-result-item {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.bf-search-result-item:last-child {
    border-bottom: none;
}

.bf-search-result-item:hover {
    background-color: #f5f5f5;
}

.bf-search-result-item h4 {
    margin: 0 0 5px 0;
    color: #0073aa;
    font-size: 16px;
    font-weight: 600;
}

.bf-search-result-item p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

.bf-search-no-results {
    padding: 20px;
    text-align: center;
    color: #666;
}

.bf-search-loading {
    padding: 20px;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bf-search-container {
        padding: 0 15px;
        width: calc(100% - 30px);
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .bf-search-wrapper {
        width: 100%;
    }
    
    .bf-search-input {
        font-size: 14px;
        padding: 10px 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .bf-search-results {
        width: 100%;
        box-sizing: border-box;
    }
    
    .bf-custom-content {
        padding: 15px;
    }
}