/* Public styles for Advanced Feed Tool */
.feed-tool-public {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.feed-tool-header {
    margin-bottom: 30px;
    text-align: center;
}

.feed-tool-header h1 {
    font-size: 2.5em;
    color: #333;
    margin: 0;
}

.feed-tool-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.tab-button {
    background: none;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 1.1em;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-button:hover {
    color: #333;
}

.tab-button.active {
    color: #0073aa;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #0073aa;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.feed-tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.feed-tool-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feed-tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.feed-tool-card h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1.4em;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.feed-tool-meta {
    margin-bottom: 20px;
}

.feed-tool-meta p {
    margin: 8px 0;
    color: #666;
}

.feed-tool-meta strong {
    color: #333;
}

.status-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: 500;
}

.status-badge.yes {
    background-color: #e7f5ea;
    color: #2e7d32;
}

.status-badge.no {
    background-color: #fdecea;
    color: #c62828;
}

.feed-tool-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.feed-tool-button {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #0073aa;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 0.9em;
}

.feed-tool-button:hover {
    background-color: #005177;
}

.feed-tool-button.view-feed {
    background-color: #4CAF50;
}

.feed-tool-button.view-feed:hover {
    background-color: #388E3C;
}

.feed-tool-button.contact-specialist {
    background-color: #2196F3;
}

.feed-tool-button.contact-specialist:hover {
    background-color: #1976D2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .feed-tool-grid {
        grid-template-columns: 1fr;
    }

    .feed-tool-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-button {
        width: 100%;
        text-align: center;
        margin: 5px 0;
    }

    .feed-tool-actions {
        flex-direction: column;
    }
} 