.app-signout-link {
    color: #ffffff;
    background-color: #000000;
    padding: 10px;
    /* Add more styles as needed */
}

.navbar-brand-logo {
    max-width: 50%;
    height: auto;
}

.navbar {
    padding: 0.5em 1em;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);  /* Adds a slight shadow below the navbar for depth */
}

.nav-item .nav-link {
    font-size: 18px;  /* Bigger font size for menu items for better visibility */
    margin-left: 10px;  /* Spacing between menu items */
}

/* Add CSS styles for mobile devices */
@media (max-width: 768px) {
    .navbar-brand {
        display: flex;
        align-items: center;
        padding: 0.5rem;
    }

    .navbar-brand img {
        margin-right: 0.5rem;
    }

    .navbar-toggler {
        margin-left: auto;
    }
}

@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    background-color: #f5f5f5;  /* Light gray background to contrast with white containers */
    color: #333;  /* Dark gray text for better readability */
    font-size: 16px;
    line-height: 1.6;  /* Improves readability */
    font-weight: 400
}
/* For bold text */
.bold-text {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 700;  /* Bold */
}

.display-4 {
    font-size: 2.5rem;  /* Adjusting the size for a more balanced appearance */
}

.btn {
    font-size: 18px;  /* Making the text inside buttons bigger for better readability */
    padding: 12px 25px;  /* Adding more padding for a better clickable area */
    border-radius: 5px;  /* Slight rounded corners */
}

.lead {
    margin-bottom: 30px;  /* More space at the bottom before other content or buttons */
}

#logoutButton:hover {
    color: #dd3333;  /* Change the text color to a soft red when hovering over the logout button */
}

.rounded-container {
    background-color: #ffffff;  /* White background */
    border: 1px solid #e0e0e0;  /* Light gray border */
    border-radius: 10px;  /* Rounded corners */
    padding: 20px;
    margin: 20px 0;  /* Vertical spacing */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);  /* Subtle shadow for depth */
}

.theme-toggle {
    display: none !important;
}

.skip-to-content-link {
    display: none !important;
}