/*
	Theme Name:    Downtown Bloomington
	Theme URI:     https://www.ten31marketing.com
	Description:   A theme for https://www.downtownbloomington.com
	Version:       1.0
	Author:        Varun Sood
	Author URI:    https://www.varunsood.com
	Template:      hello-elementor
	Text Domain:   downtownbloomington
*/

.right-container {
    position: absolute; /* Absolute on desktop */
    top: 0px; /* Adjust as needed */
    right: 0px; /* Adjust as needed */
}
/* Mobile Override */
@media (max-width: 768px) {
    .right-container {
        position: static; /* Static on mobile */
    }
}

.left-container {
    position: absolute; /* Absolute on desktop */
    top: 0px; /* Adjust as needed */
    left: 0px; /* Adjust as needed */
}
/* Mobile Override */
@media (max-width: 768px) {
    .left-container {
        position: static; /* Static on mobile */
    }
}

.content-container {
    flex: 1; /* Takes available space */
    margin-left: auto; /* Keeps it on the right */
    width: calc(100% - 700px); /* Avoids overlapping with left container */
}
@media (max-width: 768px) {
    .content-container {
        width: 100%; /* Takes full width */
        margin-left: 0;
    }
}