/*
Theme Name: Oshin Child
Description: Oshin Child Theme
Author: Your Name
Template: oshin
Version: 1.0
*/

/* Import parent theme styles */
@import url('../oshin/style.css');

/* Custom Sidebar Width (Optional) */
#main #content #right-sidebar.sidebar-widgets {
    width: 250px !important; /* Adjust sidebar width */
    padding: 15px; /* Adjust padding inside the sidebar */
}

/* Additional Customizations (if needed) */

/* Content Adjustments */
#main #content {
    margin: 0 auto; /* Center the main content */
    max-width: 1200px; /* Optional content width */
}

/* Link Styling (Optional) */
a {
    color: #007bff; /* Default link color */
    text-decoration: none;
}
a:hover {
    color: #0056b3; /* Hover link color */
}

/* Footer Styling (Optional) */
footer {
    background-color: #333; /* Dark footer background */
    color: #fff; /* Footer text color */
    text-align: center;
    padding: 20px 0;
}

/* Responsive Adjustments (Optional) */
@media screen and (max-width: 768px) {
    #main #content #right-sidebar.sidebar-widgets {
        width: 100% !important; /* Sidebar stacks in responsive view */
        padding: 10px;
    }
    #main #content {
        width: 100%; /* Full-width content for small screens */
    }
}
/* Styling for Sidebar Titles */
.wp-block-heading {
    font-family: 'Roboto', sans-serif; /* Change to your preferred font */
    font-size: 18px; /* Adjust font size */
    font-weight: 700; /* Make the title bold */
    color: #333; /* Change font color */
    text-transform: capitalize; /* Optional: Capitalize the first letter */
    margin-bottom: 10px; /* Add spacing below the title */
    text-align: left; /* Align the text (optional: adjust based on layout) */
}
