/* admin_style.css */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600&display=swap');

body {
    font-family: 'Raleway', sans-serif;
    overflow-x: hidden;
    background-color: #f8f9fa;
}

#wrapper {
    display: flex;
    width: 100%;
}

#sidebar-wrapper {
    width: 250px;
    height: 100vh;
    background-color: #f8f9fa; /* Light background for the sidebar */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    overflow-y: auto;
}

#page-content-wrapper {
    width: 100%;
    padding: 20px;
    margin-left: 250px;
}

.sidebar-heading {
    padding: 1rem 1.5rem;
    font-size: 1.2rem;
    font-family: 'Raleway', sans-serif; /* Ensure the sidebar heading uses the font */
}

.list-group-item {
    padding: 1rem 1.5rem;
    font-family: 'Raleway', sans-serif; /* Ensure the sidebar list items use the font */
}

.navbar {
    margin-bottom: 20px;
    font-family: 'Raleway', sans-serif; /* Ensure the navbar uses the font */
}

.card-title {
    font-family: 'Raleway', sans-serif; /* Ensure the card titles use the font */
}

.card-text {
    font-family: 'Raleway', sans-serif; /* Ensure the card text uses the font */
}
