* {
    box-sizing: border-box;
    font-family: system-ui, 'Segoe UI', 'Helvetica Neue', sans-serif;
}

body {
    background: #f8f9fa !important;
    margin: 0;
    min-height: 100vh;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.navbar {
    height: 80px !important;
}

.converter-container
{
	width: 1500px !important;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 2rem;
    box-shadow: 0 5px 15px 2px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding: 2rem;
    transition: all 0.3s;
    margin-top: 80px;
}
@media (max-width: 991.98px) {
  .offcanvas-collapse {
    position: fixed;
    top: 56px; /* Height of navbar */
    bottom: 0;
    left: 100%;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    overflow-y: auto;
    visibility: hidden;
    background-color: #343a40;
    transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out, visibility .3s ease-in-out;
    transition: transform .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
  }
  .offcanvas-collapse.open {
    visibility: visible;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.chart-container {
	min-height: 400px;
	background: white;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
a {
  color: #183153;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #393D49;
  font-weight: bold;
  text-decoration: underline;
}
h1 {
	
	font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    background-clip: text;
    color: #333;
    text-align: center !important;
	
}

.data-label{
	width:200px !important;
}
.data-value{
	width:120px !important;
}

.delete-row{
	width:40px !important;
}

.legend-btn:active{
	background-color:#0D6EFD !important;
}
.legend-btn:hover{
	background-color:#0D6EFD !important;
}

.card-title{
	font-size:16px;
}