/* Mobile-First Approach */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: Arial, sans-serif;
line-height: 1.6;
}

.container {
display: flex;
flex-direction: column;
padding: 1rem;
}

.company-selector {
margin-bottom: 1rem;
text-align: center;
}

label {
font-weight: bold;
margin-right: 0.5rem;
}

select {
padding: 0.5rem;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 1rem;
outline: none;
}

.dashboard {
flex: 1;
padding: 1rem;
background: #f4f4f4;
border-radius: 8px;
min-height: 100vh;
}

header {
margin-bottom: 1.5rem;
text-align: center;
}

.tabs {
display: flex;
justify-content: space-around;
margin-bottom: 1rem;
}

.tab {
flex: 1;
padding: 0.5rem;
background: #007BFF;
color: #fff;
text-align: center;
border: none;
outline: none;
cursor: pointer;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}

.tab i {
font-size: 1.5rem;
}

.tab span {
font-size: 0.75rem;
margin-top: 0.25rem;
}

.tab.active {
background: #0056b3;
}

.tab-content {
background: #fff;
padding: 1rem;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
border-radius: 8px;
}

.content {
display: none;
}

.content.active {
display: block;
}
h1 {
font-size: 18px;
}
/* Larger screens */
@media (min-width: 768px) {

.container {
flex-direction: row;
}

.company-selector {
display: none; /* Hide dropdown on larger screens */
}

.tabs {
justify-content: flex-start;
}

.tab {
flex: none;
width: 18%;
}
}
