/* styles.css */
body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: #f5f5f5;
    color: #333;
}

.app {
    display: flex;
    flex-direction: column;
    	background: -webkit-linear-gradient(22deg, #001225 13.74%, #005CB9 100%);
    background: -moz-linear-gradient(22deg, #001225 13.74%, #005CB9 100%);
    background: linear-gradient(22deg, #001225 13.74%, #005CB9 100%);
	height: 100%;

}
.app-splash-header
{
	
	height: 10%;
	width: 100%;
}
.app-splash-body
{
	
	height: 75%;
	width: 100%;
	
	display: flex;
flex-direction: column;
justify-content: center;
	
}

.app-splash-footer
{
	
	height: 15%;
	width: 100%;
}

.app-brand-name
{
	width: 100%; text-align: center
}

.app-brand-name-p1
{
	color: #FBFBFB; font-size: 64px; font-family: Metal; font-weight: 400; line-height: 51px; letter-spacing: 6px; word-wrap: break-word
}
.app-brand-name-p2
{
	color: #FBFBFB; font-size: 40px; font-family: Montserrat; font-weight: 500; line-height: 51px; word-wrap: break-word
}


.app-brand-f1
{
	color:#FBFBFB;
	text-align: center;
font-family: Roboto;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 34px
	
}

.app-brand-f2
{
	color:#FBFBFB;
	text-align: center;
font-family: Roboto;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 34px
	
}

/* App Bar */
.app-bar {
    background-color: #6200ea;
    color: white;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.app-title {
    margin: 0;
    font-size: 1.5rem;
}

/* Main Content */
.main-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    margin-bottom: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Bottom Navigation */
.bottom-nav {
    display: flex;
    justify-content: space-around;
    background-color: #6200ea;
    padding: 0.5rem 0;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.nav-item {
    flex: 1;
    text-align: center;
    padding: 0.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
    transition: background-color 0.2s;
}

.nav-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.nav-item.active {
    background-color: #3700b3;
    font-weight: bold;
}
