/* ========================
   GLOBAL: Account Main Styles
======================== */

body {
  margin: 0;
  padding: 0;
  background: #130a04;
  font-family: sans-serif;
  color: #ffffff !important;
}

/* ==============================
   Global Layout
============================== */

.account-main {
  max-width: 1200px;
  margin: 100px auto;
  padding: 40px;
  color: #fff;
  font-family: 'Morpheus', serif;
}

/* ==============================
   Navigation Tabs
============================== */

.account-nav {
  display: flex;
  gap: 50px;
  margin-bottom: 40px;
  border-bottom: 1px solid #aaa;
  padding-bottom: 12px;
}

.account-tab {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  padding: 8px 16px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.account-tab.active {
  border-bottom: 1px solid #d3af6160;
  color: #404040d1;
}

/* ==============================
   Section General Styles
============================== */

.account-section {
  margin-top: 40px;
}

.account-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.account-option .arrow {
  margin-left: 20px;
}

.account-option.delete {
  color: #ff4f4f;
}

/* ==============================
   Submenus
============================== */

.submenu {
  margin-left: 10px;
  padding: 10px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.submenu input[type="text"],
.submenu input[type="email"],
.submenu input[type="password"] {
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  max-width: 300px;
}

.submenu button {
  width: 100px;
  padding: 8px;
  border-radius: 4px;
  border: none;
  background: #d3af61;
  color: #333;
  cursor: pointer;
}

.submenu button:hover {
  background: #e4c97a;
}

.submenu label {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ==============================
   Responsive Basics
============================== */

@media (max-width: 768px) {
  .account-nav {
    gap: 30px;
    justify-content: center;
  }

  .account-option {
    font-size: 16px;
  }

  .submenu input {
    max-width: 100%;
  }
}






/* Footer bleibt unverändert */

.omg-footer {
  background: url('assets/images/footer_background.jpg') repeat center center;
  background-size: cover;
  padding: 40px 20px 20px;
  text-align: center;
  color: #ccc;
  font-family: 'Morpheus', serif;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-logo {
  width: 220px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 10px;
}

.footer-links a {
  color: #eee;
  font-size: 15px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #d3af61;
}

.footer-copy {
  font-size: 13px;
  color: #999;
  line-height: 1.5;
}