/* Basic reset for body and html */
body,
html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  height: 100%;
  overflow: hidden;
  font-size: 62.5%;
}

/* Consistent box-sizing across elements */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Root container for the app */
#app {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
}

/* Top Navigation Bar styling */
header,
.navbar,
.top-navbar {
  height: 60px;
  background-color: #007bff;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Main container */
my-app {
  width: 100%;
  height: 100%;
  flex: 1;
  display: flex;
  overflow: hidden;
  background-color: #fff;
}


