/* Parent Container Component Scoped */
.money-mgmt-grid-component {
  background-color: #ffdcb8;
  border: 1.5px solid #f2ab7c;
  border-radius: 16px;
  width: 100%;
}

/* Strategy Title */
.money-mgmt-grid-component .strategy-title {
  color: #0f766e; /* Deep green accent title */
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.money-mgmt-grid-component .title-icon {
  font-size: 18px;
}

/* Strategy Subtitle Description */
.money-mgmt-grid-component .strategy-subtitle {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.5;
  font-weight: 500;
}

/* Custom Table Styling */
.money-mgmt-grid-component .custom-strategy-table {
  border: 1px solid #064e3b;
  overflow: hidden;
  border-radius: 12px;
}

.money-mgmt-grid-component .custom-strategy-table thead tr {
  background-color: #044e3a !important; /* Dark Green Header */
}

.money-mgmt-grid-component .custom-strategy-table th {
  background-color: #044e3a !important;
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 12px 16px;
  border: none;
}

.money-mgmt-grid-component .custom-strategy-table td {
  background-color: #ffffff !important;
  color: #1f2937;
  font-size: 13.5px;
  padding: 14px 16px;
  border-bottom: 1px solid #f3f4f6;
}

/* Highlights in Table */
.money-mgmt-grid-component .profit-text {
  color: #16a34a !important; /* Bright Green */
}

.money-mgmt-grid-component .hedge-text {
  color: #4b5563 !important; /* Neutral Gray */
}

/* Golden Rule Alert Box */
.money-mgmt-grid-component .golden-rule-box {
  background-color: #e6f7f2;
  border: 1px solid #a3e6cd;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: #065f46;
}

.money-mgmt-grid-component .warning-icon {
  font-size: 14px;
}