/**
 * SRA Collab Actions CSS
 *
 * This stylesheet contains styles for action buttons and interactive elements.
 */

/* Action Buttons */
.sra-collab-actions {
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.sra-collab-actions a {
    display: inline-block;
}

.sra-collab-action-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.sra-collab-notice {
    text-align: center;
    margin: 1rem 0 2rem;
}

/* Follow Button */
.sra-collab-follow-btn {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sra-collab-follow-btn.following {
    background-color: #28a745;
}

.sra-collab-follow-btn.following:hover {
    background-color: #218838;
}

.sra-collab-follow-btn .dashicons {
    font-size: 16px;
    width: auto;
    height: auto;
    line-height: 1;
    margin-right: 4px;
}

.sra-collab-follow-count {
    display: inline-flex;
    align-items: center;
    font-size: 0.9em;
    color: #666;
    font-weight: 500;
}

/* Navigation Links */
.sra-collab-navigation-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.sra-collab-navigation-links .sra-collab-btn {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sra-collab-navigation-links .dashicons {
    font-size: 16px;
    width: auto;
    height: auto;
    line-height: 1;
}

.sra-collab-post-navigation {
    display: flex;
    gap: 10px;
}

/* Meta Stats */
.sra-collab-meta-stats {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sra-collab-comments-count,
.sra-collab-followers-count {
    display: flex;
    align-items: center;
    gap: 5px;
}

.sra-collab-meta-stats .dashicons {
    font-size: 16px;
    width: auto;
    height: auto;
    line-height: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sra-collab-navigation-links {
        flex-direction: column;
    }
    
    .sra-collab-action-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sra-collab-follow-count {
        margin-left: 0;
    }
}

/* Single Image Container */
.sra-collab-single-image-container {
    text-align: center;
    margin-bottom: 20px;
}

/* Private Response Button */
.sra-collab-private-response-btn {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sra-collab-private-response-btn .dashicons {
    font-size: 16px;
    width: auto;
    height: auto;
    line-height: 1;
}
