/* assets/css/snfw-admin.css */
.tab-nav-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.custom-tab-nav {
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 0;
}

.nav-tab {
  padding: 10px 20px;
  background: #f0fff6;
  color: #25d366;
  font-weight: bold;
  border-radius: 5px 5px 0 0;
  text-decoration: none;
}

.nav-tab-active {
  background: #ffffff;
  outline: 2px solid #25d366;
}

.card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.04);
  padding: 14px;
  flex: 1 1 calc(50% - 20px);
}

.card-header {
  font-size: 16px;
  font-weight: bold;
  color: #1b3d2f;
  padding-bottom: 8px;
}

.card-divider {
  border: none;
  border-top: 1px solid #d6f2e4;
  margin-bottom: 12px;
}

.header-icon {
  margin-right: 6px;
}

.styled-input,
.styled-textarea {
  width: 100%;
  padding: 10px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.styled-textarea:focus {
  border-color: #25d366;
  outline: none;
}

.full-width-button {
  width: 100%;
  background-color: #25d366;
  color: #fff;
  border: none;
  padding: 14px;
  font-weight: bold;
  font-size: 16px;
  border-radius: 6px;
}

.full-width-button:hover {
  background-color: #1ebe5d;
}

/* Fix wrap container center align */
.wrap {
  margin-top: 50px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  background: #f2fef6;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  z-index: 1;
}

/* Fix submit button alignment and spacing */
.submit-row {
  margin-top: 40px;
}

.submit-row .full-width-button {
  width: 100%;
}
