/* /Components/PlayOhNoteButton.razor.rz.scp.css */
.get-it-on-google-play-btn[b-2okibdridl] {
	img {
		height: var(--play-btn-height);
		width: var(--play-btn-width);
		margin: 10px;
	}

	&:hover[b-2okibdridl] {
		transform: scale(1.05);
		transition: transform 0.2s ease;
	}
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-i0uwoof52t] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-i0uwoof52t] {
    flex: 1;
}

.sidebar[b-i0uwoof52t] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-i0uwoof52t] {
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

.top-row[b-i0uwoof52t]  a, .top-row[b-i0uwoof52t]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
}

.top-row[b-i0uwoof52t]  a:hover, .top-row[b-i0uwoof52t]  .btn-link:hover {
    text-decoration: underline;
}

.top-row[b-i0uwoof52t]  a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 640px) {
    .top-row[b-i0uwoof52t] {
        justify-content: space-between;
    }

    .top-row[b-i0uwoof52t]  a, .top-row[b-i0uwoof52t]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-i0uwoof52t] {
        flex-direction: row;
    }

    .sidebar[b-i0uwoof52t] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-i0uwoof52t] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-i0uwoof52t]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-i0uwoof52t], article[b-i0uwoof52t] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.top-row[b-zgi3lb99lj] {
    min-height: 3.5rem;
    background: rgba(0,0,0,0.4);
}

.navbar-brand[b-zgi3lb99lj] {
    font-size: 1.1rem;
    color: #2e6b99;
    transition: color 0.3s ease;
}

.navbar-brand:hover[b-zgi3lb99lj] {
    color: #e2474b;
}

.navbar-toggler[b-zgi3lb99lj] {
    color: #2e6b99;
    font-size: 1.75rem;
    font-weight: bold;
    outline: none;
    box-shadow: none;
    transition: color 0.3s ease;
}

.navbar-toggler.pressed[b-zgi3lb99lj],
.navbar-toggler:hover[b-zgi3lb99lj] {
    outline: none;
    box-shadow: none;
}

.navbar-toggler:hover[b-zgi3lb99lj]{
    color: #e2474b;
}

.navbar-nav[b-zgi3lb99lj]  a {
    color: #2e6b99;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
    padding: 0.75rem 1.25rem;
    transition: color 0.3s ease;
}

.navbar-nav[b-zgi3lb99lj]  a.active,
.navbar-nav[b-zgi3lb99lj]  a:hover {
    color: #e2474b;
}

.navbar-collapse[b-zgi3lb99lj] {
    max-height: 145px;
    transition: max-height 0.3s ease;
}

.collapse[b-zgi3lb99lj] {
    display: block;
    overflow: hidden;
    max-height: 0px;
}

@media (min-width: 641px) {
    .navbar-toggler[b-zgi3lb99lj] {
        display: none;
    }

    .collapse[b-zgi3lb99lj] {
        /* Never collapse the sidebar for wide screens */
        display: block;
        max-height: none;
    }

    .nav-scrollable[b-zgi3lb99lj] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/Home.razor.rz.scp.css */
.hero-section[b-lrfp5k6607] {
	padding: 80px 20vw;
	text-align: center;

	& .container {
		max-width: 800px;
		margin: auto;
	}
}

.apps-section[b-lrfp5k6607] {
	padding: 50px 27vw;
	text-align: center;
	color: white;
}

.app-cards[b-lrfp5k6607] {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	color: black;
	margin-top: 15px;

	.app-card {
		display: flex;
		flex-direction: column;
		align-items: center;
    	justify-content: center;
		width: 300px;
		border: 1px solid #cccccc;
		border-radius: 12px;
		padding: 20px;
		background: white;
		box-shadow: 0 4px 10px rgba(0,0,0,0.05);
		transform: translateY(20px);
		
		& .app-card-header {
			display: flex;
			height: 60px;
			margin-top: 5px;
			margin-bottom: 20px;
			justify-content: center;
			align-items: center;

			& h3 {
				margin: 0px;
			}
			
			& img[b-lrfp5k6607] {
				margin-left: 10px;
				height: 50px;
			}
		}

		& .view-more-btn[b-lrfp5k6607] {
			width: var(--play-btn-width) !important;
			margin-bottom: 15px !important;
		}
		
		&.coming-soon-card h3[b-lrfp5k6607] {
			font-size: x-large;
			width: 155px;
		}

		/* & > :nth-child(2) {
			display: flex;
			flex: 1;
			align-items: center;
  			justify-content: center;
		} */
	}
}

.svg-art[b-lrfp5k6607] {
	position: absolute;
	top: 10px;
	height: auto;
	width: 25vw;
	max-width: 350px;

	&.svg-left {
		left: 0px;
	}

	&.svg-right[b-lrfp5k6607] {
		right: 0px;
	}

	& img[b-lrfp5k6607] {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
}

@media (max-width: 991px) {
    .svg-art[b-lrfp5k6607] {
		top: 60px;
    }
}
/* /Pages/OhNote.razor.rz.scp.css */
