/*

Theme Name: Pro &ndash; Child Theme
Theme URI: https://theme.co/pro/
Author: Themeco
Author URI: https://theme.co/
Description: Make all of your modifications to Pro in this child theme.
Version: 1.0.0
Template: pro

*/

/* Sidebar Styles */ 
/* Add this to your theme's stylesheet */
.tribe-events-container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1200px; /* Adjust based on your theme's content width */
}

.tribe-events-content {
    flex: 1;
    min-width: 65%;
    padding-right: 30px;
}

.tribe-events-sidebar {
    width: 30%; /* Standard WordPress sidebar width */
}

/* Responsive design for mobile devices */
@media (max-width: 768px) {
    .tribe-events-container {
        flex-direction: column;
    }
    
    .tribe-events-content,
    .tribe-events-sidebar {
        width: 100%;
        padding-right: 0;
    }
}
/* End Sidebar Styles */