body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 15px;
	
}

.container {
    max-width: 800px;
    margin: 0;
}

.box-office-data {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.box-office-data h1 {
    color: #e74c3c;
    font-size: 36px;
    margin: 12px 0;
	font-weight:600;
}
.concert-rankings {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
        border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.concert-rankings ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 18px;
}

.concert-rankings li {
    display: flex;
    margin: 10px 0;
    align-items: center;
    padding: 10px 0;
}

.concert-rankings li:last-child {
    border-bottom: none;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rank {
    font-weight: bold;
    width: 28px;
    text-align: left;
    color: #e74c3c;
    order: 1;
}

.avatar {
    order: 2;
}

.name {
    font-size: 15px;
    font-weight: bold;
    order: 3;
    margin-left: 10px;
}

.amount {
    color: #e74c3c;
    font-weight: bold;
    font-size: 16px;
    order: 4;
    margin-left: auto;
}

.trend-analysis {
    background-color: #fff;
    padding: 20px;

    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.analysis{	
	margin:15px 0;
	

}

.increase {
    color: #21c45d;
    font-weight: bold;
	float:right;
}

.decrease {
    color: red;
    font-weight: bold;
	float:right;
}

.data-summary {

}

.summary-item {
			width: 100%;
            background-color: #fff;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            display: block;
            justify-content: space-between;
			margin-bottom:15px;
}

.summary-item1 {
			margin-top:15px;
            display: flex;
            justify-content: space-between;
	
}


.stat {
	
		margin: 0;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            align-items: left;
            width: 48%;
        }
     .stat-icon {
		 
            font-size: 20px;
            color: blue;
        }
     .stat-value {
            font-size: 16px;
			color: #e74c3c;
			font-weight:bold;
			
        }
     .stat-label {
			margin:5px 0;
            font-size: 16px;
            font-weight: bold;
        }