/* General Styles */

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f9f9f9;
    color: #333;
}

.header {
    width: 100%;
    height: 100px;
    background-color:#ffc9bf;

}


nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 0; 
    margin-left: 20px;
}

nav h1 {
    margin-left: 20px;
}
.wrapper {
    display: flex;
}

h1 {
    text-align: left;
    margin-bottom: 20px;
    color: #f61b33;
}

h2 {
    text-align: left;
    margin-bottom: 20px;
    color: #f61b33;
}

/* Table Styles */

.tablearea {
    margin: 20px;
}
table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    margin-bottom: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


thead {
    background-color: #ffffff;
    color: #000000;

}

thead th {
    padding: 10px;
    text-align: left;
}

tbody td, th {
    padding: 10px;
    text-align: left;
}


tbody tr, thead th {
    border-bottom: 1px solid #ddd;
}

tbody tr:hover {
    background-color: #ccccff;
}

tfoot {
    font-weight: bold;
    color: #000000;
    background-color: #ffffff;
}

tfoot th {
    border-radius: 10px;
}

/* Chart Container */
.chart-container {
    max-width: 1200px;
    margin: 0 auto 20px;
    padding: 10px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Button Styles */
.button-container {
    text-align: center;
    margin-bottom: 20px;
}

button {
    background-color: #6053fd;
    color: #fff;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #4d42ca;
}
