
/* Existing styles */ 
.dashboard-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 2rem;
    font-family: sans-serif;
}

/* Add style for the .container class used in tab-erstellen.php */
.container {
    max-width: 960px; /* Or a width that fits your design */
    margin: 20px auto; /* Centers it with some top/bottom margin */
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Optional: subtle shadow */
    border-radius: 8px; /* Optional: rounded corners */
    background-color: #fff; /* Optional: white background */
}

/* Styles for progress bar */
.progress-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1; /* Ensure steps are above the line */
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ccc;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
}

.step-text {
    margin-top: 8px;
    font-size: 0.9em;
    color: #555;
    text-align: center;
}

.progress-line {
    position: absolute;
    height: 4px;
    background-color: #eee;
    width: calc(100% - 80px); /* Adjust width to fit between circles */
    left: 40px; /* Start after first circle */
    top: 20px; /* Vertically center */
    z-index: 0;
}

.progress-step.completed .step-circle {
    background-color: #4CAF50; /* Green for completed */
}

.progress-step.current .step-circle {
    background-color: #007bff; /* Blue for current */
}

/* Remaining styles (realbrand radio, etc.) */
.dashboard-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    padding: 0;
}

.dashboard-nav li a {
    display: block;
    padding: 0.5rem 1rem;
    background: #eaeaea;
    border-radius: 0.4rem;
    text-decoration: none;
    color: #222;
}

.dashboard-nav li a:hover {
    background: #c3002f;
    color: white;
}

.dashboard-content {
    margin-top: 2rem;
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 0.5rem;
    min-height: 300px;
}

#wrapper {
    min-height: 100vh;
}

#sidebar-wrapper {
    height: 100vh;
    position: fixed;
}

#page-content-wrapper {
    margin-left: 250px;
    padding: 1rem;
}

.realbrand-radio-group {
  margin-bottom: 15px; /* Added for consistent spacing */
}

.realbrand-radio-options {
  display: flex;
  gap: 12px;
}

.realbrand-radio-label {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #f0f0f0;
  border: 2px solid #ccc;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  user-select: none;
  transition: all 0.2s ease-in-out;
}

/* Radio-Button selbst verstecken */
.realbrand-radio-label input[type="radio"] {
  display: none;
}

/* Checked-Style */
.realbrand-radio-label input[type="radio"]:checked + span,
.realbrand-radio-label input[type="radio"]:checked { /* This might be redundant due to the :has selector below */
  background-color: #e30613;
  color: white;
  border-color: #e30613;
}

.realbrand-radio-label input[type="radio"]:checked ~ span, /* Targets span next to checked radio */
.realbrand-radio-label:has(input[type="radio"]:checked) { /* Targets the label itself if it contains a checked radio */
  background-color: #e30613;
  color: white;
  border-color: #e30613;
}

/* Style for text inputs in form-grid */
.form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}
.form-grid > div {
    flex: 1 1 45%; /* Adjust as needed */
}
.form-grid input[type="text"] {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}