.table_main{
    background-color: white;
    padding: 60px 0;
    min-height: 80vh;
    overflow-x: auto;

}

.main_menu {
    background-color: #ffffff;
    text-align: center;
    padding: 40px 0 20px 0;
    border-bottom: 0px solid #e0e0e0;
}

.btn_carbon_app_new_entry_main {
    background-color: #007bff;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.two_emissions_graphs {
  padding: 40px 0;
  background: white;
}

.two_emissions_graphs .container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}



.two_emissions_graphs .box {
  width: 45%;
  min-height: 300px;
  min-width: 350px;
  background:gray;
  border-radius: 12px;
  padding: 20px;
  margin: 20px auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.two_emissions_graphs canvas {
  width: 100% !important;
  height: auto !important;
}

.btn_carbon_app_new_entry_main:hover{
    background-color: #0056b3;
    color: #fff;
    transform: scale(1.03);
}

.table {
    width: 90%;
    margin: 40px auto;

}

.table thead {
    background-color: black;
    color: white;
}

.table th,
.table td {
    padding: 14px 18px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.table tbody tr:hover {
    background-color: #f0f6ff;
}

.btn-outline-danger {
    color: #dc3545;
    border: 1px solid #dc3545;
    transition: all 0.2 ease-in-out;
}

.btn-outline-danger:hover {
    background-color: #dc3545;
    color: white;
}

.table_main {
    padding-bottom: 80px;
}

