/*CSS file for the subpages*/
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    background-color: #f4f4f4;
}

/* This container is for the grid layout that I used on the subpages*/
.container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    height: 100vh;
}

/*This is for the navigation/left sidebar*/
.sidebar {
    background-color: #2c3e50;
    color: #ecf0f1;
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.sidebar .logo {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.sidebar .menu a {
    color: #ecf0f1;
    text-decoration: none;
    margin: 10px 0;
    padding: 5px;
    display: block;
}
/* This has a color when you hover over the menu */
.sidebar .menu a:hover {
    background-color: #34495e;
    border-radius: 5px;
}

.main-content {
    background-color: #fff;
    padding: 20px;
}

.header {
    margin-bottom: 10px;
}

.header input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.chart {
    display: flex;
    flex-direction: column;
    height: calc(100% - 40px);
}

.chart-graph {
    flex: 2;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
	/* This creates a 135 degree gradient */
    background: linear-gradient(135deg, #2c3e50, #34495e, #ecf0f1);
	border: 1px solid #ccc;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	height: 100%;
}

.chart-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.transactions {
    flex: 1;
    overflow-y: auto;
}

.transactions table {
    width: 100%;
    border-collapse: collapse;
}

.transactions th,
.transactions td {
    text-align: left;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

/* This is for the right sidebar */
.right-panel {
    background-color: #ecf0f1;
    padding: 20px;
}

.right-panel h2 {
	display: flex;
	align-items: center;
	font-size: 24px;
	color: #fff;
}

.banner {
	margin: 10px 0;
	display: flex;
	justify-content: center;
	background-color: #34495e;
	border-radius: 8px;
	overflow: hidden;
}

.banner-image {
	width: 100%;
	height: auto;
	max-height: 100px:
}

.moodeng-icon {
	width: 48px;
	height: 48px;
	margin-left: 8px;
	border-radius: 50%;
}

.steve-icon {
	width: 48px;
	height: 48px;
	margin-left: 8px;
	border-radius: 50%;
}

.father-icon {
	width: 48px;
	height: 48px;
	margin-left: 8px;
	border-radius: 50%;
}

.chillguy-icon {
	width: 48px;
	height: 48px;
	margin-left: 8px;
	border-radius: 50%;
}

.totoro-icon {
	width: 48px;
	height: 48px;
	margin-left: 8px;
	border-radius: 50%;
}

.spongebob-icon {
	width: 48px;
	height: 48px;
	margin-left: 8px;
	border-radius: 50%;
}

.token-info {
    background-color: #d35400;
    color: white;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.token-info h2 {
    margin: 0 0 10px;
}

.stats p {
    margin: 5px 0;
    font-size: 14px;
}