/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
/* Sidebar and Content Layout */
.content-area {
    width: 70%;
    float: left;
    margin-right: 20px;
}

.widget-area {
    width: 30%;
    float: right;
}

/* Widget Styling */
.widget {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.widget-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-area,
    .widget-area {
        width: 100%;
        float: none;
        margin-right: 0;
    }
}
