/* src/assets/global.css */

/* Color Scheme */
:root {
  --siemens-blue: #0077B5;
  --siemens-gray: #666666;
  --tafel-green: #4CAF50;
  --tafel-white: #FFFFFF;
  --text-color: #333333;
}

/* Typography */
body {
  font-family: 'Siemens Sans', Arial, sans-serif;
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--siemens-blue);
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Layout and Structure */
.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: -1rem;
}

.col {
  flex: 1;
  padding: 1rem;
}

/* Buttons and Interactions */
.btn {
  display: inline-block;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-primary {
  color: var(--tafel-white);
  background-color: var(--siemens-blue);
  border-color: var(--siemens-blue);
}

.btn-primary:hover {
  color: var(--tafel-white);
  background-color: #005A8E;
  border-color: #005A8E;
}

/* Form Elements */
.form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-color);
  background-color: var(--tafel-white);
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  color: var(--text-color);
  background-color: var(--tafel-white);
  border-color: var(--siemens-blue);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 119, 181, 0.25);
}


