
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 500;
  color: #3a4a6f;
  background-color: #ffffff;
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Header */
.togma-header {
  background-color: #eef2f8;
  border-bottom: 1px solid #d7deea;
  padding: 12px 18px;
  border-radius: 8px;
}

/* Content Sections */
.togma-content,
.togma-content-2 {
  padding: 16px;
  background-color: #f2f5fb;
  border-radius: 8px;
}



#app {
  margin-top: -8px;
}
#app {
  min-height: 100vh; /* full viewport height */
  display: flex;
  flex-direction: column;
}
/* Main Content Block */
.main-app,
.main-app-2 {
  flex: 1;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(20, 40, 80, 0.08);
  transition: box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.main-app:hover,
.main-app-2:hover {
  box-shadow: 0 4px 14px rgba(20, 40, 80, 0.12);
}

.full-tb {
  padding: 18px;
}

/* BUTTONS — flat, light business */
.btn,
b-button {
  background-color: #00337b; /* corporate blue */
  color: #ffffff !important;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  padding: 8px 18px;
  transition: all 0.15s ease-in-out;
  box-shadow: 0 2px 5px rgba(28, 101, 216, 0.2);
}

.btn:hover,
b-button:hover {
  background-color: #00265c;
  box-shadow: 0 4px 10px rgba(28, 101, 216, 0.25);
  transform: translateY(-1px);
}

/* Primary Button */
.btn-primary {
  background-color: #00337b;
}

.btn-primary:hover {
  background-color: #00265c;
}

/* Tabs (Light + Professional) */
.nav-tabs {
  border-bottom: 1px solid #c7d3e5;
}

.nav-tabs .nav-link,
.nav-pills .nav-link {
  color: #273653;
  background-color: #eef2f7;
  border-radius: 4px;
  margin-right: 4px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: background-color 0.2s ease;
}

.nav-tabs .nav-link.active,
.nav-pills .nav-link.active {
  background-color: #164ea8;
  color: white !important;
  border-color: #1c65d8 #1c65d8 #ffffff;
  box-shadow: 0 2px 6px rgba(28, 101, 216, 0.25);
}

.nav-tabs .nav-link:hover {
  background-color: #dde4f1;
}

/* Cards */
.card .nav-tabs .nav-link {
  border-radius: 8px 8px 0 0;
}

.card .nav-tabs .nav-link.active {
  border-bottom-color: white;
}

/* Status Boxes */
.success-box {
  background-color: #3aa76d;
  color: white;
}

.warning-box {
  background-color: #d3a029;
  color: white;
}

.error-box {
  background-color: #c03e3e;
  color: white;
}

.success-box,
.warning-box,
.error-box {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
  white-space: nowrap;
}

/* Console Output */
#console-result {
  font-size: 0.9rem;
  color: #1f2a44;
  margin-top: 12px;
  padding-left: 8px;
  border-left: 4px solid #164ea8;
}

.loading-screen-main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #fff;
}

.loading-screen {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
}

[v-cloak] {
  display: none;
}