/********************************************************************************
 * Eclipse Tractus-X - Industry Core Hub Frontend
 *
 * Copyright (c) 2025 LKS Next 
 * Copyright (c) 2025 Contributors to the Eclipse Foundation
 *
 * See the NOTICE file(s) distributed with this work for additional
 * information regarding copyright ownership.
 *
 * This program and the accompanying materials are made available under the
 * terms of the Apache License, Version 2.0 which is available at
 * https://www.apache.org/licenses/LICENSE-2.0.
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
 * either express or implied. See the
 * License for the specific language govern in permissions and limitations
 * under the License.
 *
 * SPDX-License-Identifier: Apache-2.0
********************************************************************************/

:root {
  /* Custom Gold-Black Color Scheme */
  --md-primary-fg-color: #FFD700;        /* Pure gold */
  --md-primary-fg-color--light: #FFEB3B; /* Lighter gold */
  --md-primary-fg-color--dark: #B8860B;  /* Dark goldenrod */
  --md-accent-fg-color: #FFD700;         /* Gold accent */
  --md-accent-fg-color--transparent: rgba(255, 215, 0, 0.1);
}

/* Header with black background and orange accents */
.md-header {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%) !important;
  color: white;
  display: flex !important;
  align-items: center !important;
  min-height: 80px !important;
  padding: 16px 0 !important;
}

.md-header__inner {
  height: 50px !important;
  max-height: 50px !important;
}

.md-header__title {
  color: #ffffff !important;
  font-weight: 700;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  font-size: 1.0rem !important;
  line-height: 1.2 !important;
}

.md-header__button {
  margin: 8px !important;
}

/* Logo styling - Increased size */
.md-logo {
  padding: 0 !important;
}

.md-logo img {
  height: 30px !important;
  width: auto !important;
  max-height: 30px !important;
}

.md-header__button.md-logo {
  margin: 4px 8px !important;
}

/* Navigation tabs - Gold background */
.md-tabs {
  background: linear-gradient(135deg, #FFD700 0%, #B8860B 100%) !important;
  min-height: 40px !important;
}

.md-tabs__link {
  color: white !important;
  font-weight: 700 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  font-size: 0.95rem !important;
  letter-spacing: 0.5px;
  padding: 0px 16px 12px 16px !important;
  height: 30px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
}

.md-tabs__link:hover {
  background-color: rgba(0, 0, 0, 0.1) !important;
  font-weight: 800 !important;
}

.md-tabs__link--active {
  background-color: rgba(0, 0, 0, 0.2) !important;
  font-weight: 800 !important;
}

/* Sidebar with dark theme and gold accents */
.md-nav--primary .md-nav__title {
  background-color: #1a1a1a !important;
  color: #FFD700 !important;
}

.md-nav__link--active {
  color: #FFD700 !important;
}

.md-nav__link:hover {
  color: #FFD700 !important;
}

/* Search bar styling */
.md-search__input {
  background-color: rgba(0, 0, 0, 0.1);
  border: 1px solid #FFD700;
}

.md-search__input:focus {
  border-color: #FFEB3B;
}

/* Button styling */
.md-button {
  background-color: #ad9300 !important;
  color: black !important;
  border: none;
}

.md-button:hover {
  background-color: #B8860B !important;
  color: white !important;
}

.md-button--primary {
  background-color: #ad9300 !important;
  color: black !important;
}

/* Footer with black background */
.md-footer {
  background-color: #000000 !important;
  color: white;
}

.md-footer__link {
  color: #FFD700 !important;
}

.md-footer__link:hover {
  color: #FFEB3B !important;
}

/* Code blocks with dark theme
.md-typeset .codehilite,
.md-typeset .highlight {
  background-color: #1a1a1a;
  border: 1px solid #333;
} */



/* Inline code styling
.md-typeset code {
  background-color: #2d2d30;
  color: #f8f8f2;
  padding: 2px 6px;
  border-radius: 4px;
} */

/* Admonitions with gold accents */
.md-typeset .admonition {
  border-left: 4px solid #FFD700;
}

.md-typeset .admonition > .admonition-title {
  background-color: rgba(255, 215, 0, 0.1);
  border-bottom: 1px solid #FFD700;
}
