/**
 * Admin styling for MCAN theme
 * Applied only on admin pages
 */
/* Improve admin toolbar visibility */
body.toolbar-horizontal {
  padding-top: 0 !important;
}

/* Form styling improvements */
.form-item {
  margin-bottom: 1rem;
}

.form-item label {
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}

.form-text,
.form-textarea,
.form-select {
  width: 100%;
  max-width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.form-text:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

/* Button styling */
.button,
.form-submit {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  background: #f5f5f5;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
}

.button--primary,
.form-submit {
  background: #0066cc;
  color: white;
  border-color: #0066cc;
}

.button:hover,
.form-submit:hover {
  background: #0052a3;
  border-color: #0052a3;
}

/* Table styling */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

table th,
table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

table th {
  background: #f5f5f5;
  font-weight: 600;
}

/* Admin tabs */
.tabs {
  margin: 1rem 0;
  border-bottom: 2px solid #e0e0e0;
}

.tabs__tab {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-weight: 500;
  color: #666;
  transition: all 0.2s;
}

.tabs__tab:hover,
.tabs__tab.is-active {
  color: #0066cc;
  border-bottom: 2px solid #0066cc;
}

/* Messages */
.messages {
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 4px;
  border-left: 4px solid;
}

.messages--status {
  background: #e8f5e9;
  border-color: #4caf50;
  color: #2e7d32;
}

.messages--warning {
  background: #fff3e0;
  border-color: #ff9800;
  color: #e65100;
}

.messages--error {
  background: #ffebee;
  border-color: #f44336;
  color: #c62828;
}

/* Details/Fieldset */
details {
  margin: 1rem 0;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}

summary {
  padding: 1rem;
  cursor: pointer;
  font-weight: 600;
  background: #f5f5f5;
  border-radius: 4px 4px 0 0;
}

details[open] summary {
  border-bottom: 1px solid #e0e0e0;
}

.details-wrapper {
  padding: 1rem;
}

/* Vertical tabs */
.vertical-tabs {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}

.vertical-tabs__menu {
  border-right: 1px solid #e0e0e0;
  background: #f5f5f5;
}

.vertical-tabs__menu-item {
  padding: 0.75rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid #e0e0e0;
}

.vertical-tabs__menu-item:hover,
.vertical-tabs__menu-item.is-selected {
  background: #fff;
  border-left: 3px solid #0066cc;
}

/* Admin content area */
.region-content {
  padding: 2rem;
  background: #fff;
}

/* Node edit form improvements */
#edit-actions {
  position: sticky;
  bottom: 0;
  background: #fff;
  padding: 1rem;
  border-top: 1px solid #e0e0e0;
  margin-top: 2rem;
  z-index: 100;
}

#block-mcan-primary-local-tasks ul:not(.contextual-links) {
  display: flex;
  gap: 25px;
  list-style-type: none;
  border-bottom: 1px solid black;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
#block-mcan-primary-local-tasks ul:not(.contextual-links) li a {
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  color: var(--mcan-blue);
  padding-bottom: 5px;
  border-bottom: 3px solid transparent;
}
#block-mcan-primary-local-tasks ul:not(.contextual-links) li a:hover {
  border-bottom: 3px solid var(--mcan-coral);
}
#block-mcan-primary-local-tasks ul:not(.contextual-links) li.is-active a {
  border-bottom: 3px solid var(--mcan-coral);
}/*# sourceMappingURL=admin.css.map */