.gsgp-dashboard-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
  font-family: var(--cs-font-menu-family), sans-serif;
}

.gsgp-sidebar {
  width: 250px;
  padding: 20px;
  border-radius: 8px;
  background-color: transparent;
  align-self: flex-start;
  border: 1px solid rgba(0, 0, 0, 0.1); /* subtle border instead of hardcoded background colors */
  color: inherit;
}

.gsgp-sidebar-profile {
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
}

.gsgp-sidebar-profile img {
  border-radius: 50%;
  margin-bottom: 10px;
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 3px solid transparent;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.gsgp-sidebar-profile h3 {
  margin: 0 0 5px;
  font-size: 1.1em;
  color: inherit;
}

.gsgp-sidebar-profile p {
  margin: 0 0 5px;
  font-size: 0.9em;
  opacity: 0.8; /* Instead of gray color */
}

.gsgp-sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.gsgp-sidebar-nav a {
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  color: inherit; /* Inherit link colors from theme */
  transition: all 0.3s;
  display: block;
}

.gsgp-sidebar-nav a:hover,
.gsgp-sidebar-nav a.active {
  background: rgba(0, 0, 0, 0.05); /* very light subtle gray */
  font-weight: bold;
}

.gsgp-main-content {
  flex: 1;
  min-width: 300px;
  padding: 30px;
  border-radius: 8px;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: inherit;
}

.gsgp-header-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.gsgp-header-action h2 {
  margin: 0;
  color: inherit;
}

.gsgp-btn {
  background: var(--cs-light-button-background, #000000);
  background-color: var(
    --cs-color-button,
    var(--cs-light-button-background, #000000)
  );
  color: #fff;
  padding: 8px 15px;
  text-decoration: none;
  transition:
    background-color 0.3s,
    opacity 0.3s;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.gsgp-btn:hover {
  background-color: var(--cs-color-button-hover);
  color: #fff;
}

.gsgp-table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
}

.gsgp-table th,
.gsgp-table td {
  padding: 12px 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: inherit;
}

.gsgp-table th {
  background: rgba(0, 0, 0, 0.02);
  font-weight: bold;
}

.gsgp-form-row {
  margin-bottom: 20px;
}

.gsgp-form-row label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.gsgp-form-row input[type="text"],
.gsgp-form-row input[type="email"],
.gsgp-form-row textarea,
.gsgp-form-row select {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  background: transparent;
  color: inherit;
  font-family: inherit;
}

/* Post Editor Layout */
.gsgp-post-editor-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.gsgp-post-editor-main {
  flex: 1;
  min-width: 0;
}

.gsgp-post-editor-sidebar {
  width: 300px;
  flex-shrink: 0;
  padding: 25px;
  border-radius: 8px;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: inherit;
}

.gsgp-post-editor-sidebar h3 {
  margin-top: 0;
  font-size: 1.2rem;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: inherit;
}

.gsgp-post-editor-sidebar ul {
  padding-left: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  list-style-type: none;
  margin: 0;
}

.gsgp-post-editor-sidebar li {
  margin-bottom: 15px;
  position: relative;
}

.gsgp-post-editor-sidebar li:last-child {
  margin-bottom: 0;
}

.gsgp-sidebar-icon-check {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cs-color-button, #3b82f6);
}

.gsgp-sidebar-icon-cross {
  position: absolute;
  left: 0;
  top: 0;
  color: #ef4444;
  font-weight: bold;
}

.gsgp-sidebar-warning {
  color: #ef4444;
}

@media (max-width: 768px) {
  .gsgp-post-editor-layout {
    flex-direction: column;
  }
  .gsgp-post-editor-sidebar {
    width: 100%;
  }
}

.gsgp-img-1 {
    padding-top: 10px;
}
