@charset "utf-8";
/* CSS Document */
body {
	background-color:#cd2026 !important;
}

.box{
	text-align:center;
	width:100%;
}

@media (max-width: 1170px) {

.box{
	text-align:center;
	width:100%;
	margin-top:600px;
    }
}
/* style.css */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.dashboard {
    width: 90%;
    max-width: 800px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.header {
    background-color: #4267B2;
    padding: 20px;
    color: white;
    text-align: center;
}

.content {
    padding: 20px;
}

.message-list {
    max-height: 400px;
    overflow-y: auto;
    background: #e9f5ff;
    padding: 10px;
    border-radius: 5px;
}

.message {
    background-color: #ffffff;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}