#dmsg-plugin-wrapper {
   max-width: 850px !important;
   margin: 30px auto !important;
   font-family: Arial, sans-serif !important;
 }

 #dmsg-plugin-wrapper .dmsg-top-container {
   background: #e8f6e8 !important;
   border-left: 5px solid #4CAF50 !important;
   padding: 15px 25px !important;
   border-radius: 4px !important;
   margin-bottom: 20px !important;
 }

 #dmsg-plugin-wrapper .dmsg-hh1 {
   font-size: 1.6em !important;
   font-weight: bold !important;
   color: #1b5e20 !important;
 }

 #dmsg-plugin-wrapper .dmsg-registration-form {
   background: #ffffff !important;
   border: 1px solid #e0e0e0 !important;
   border-radius: 8px !important;
   padding: 25px !important;
   box-shadow: 0 4px 12px rgba(0,0,0,0.05) !important;
 }

 #dmsg-plugin-wrapper .dmsg-step-indicator {
   display: flex !important;
   gap: 10px !important;
   margin-bottom: 25px !important;
 }

 #dmsg-plugin-wrapper .dmsg-step {
   flex: 1 !important;
   padding: 10px !important;
   background: #eee !important;
   border-radius: 20px !important;
   text-align: center !important;
   font-size: 0.85em !important;
   font-weight: bold !important;
 }

 #dmsg-plugin-wrapper .dmsg-step.active {
   background: #4CAF50 !important;
   color: #fff !important;
 }

 /* Plan Cards */
 .dmsg-plan-options {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 12px;
   margin-top: 10px;
 }

 .dmsg-plan-card {
   display: flex;
   align-items: center;
   gap: 10px;
   border: 2px solid #ddd;
   padding: 12px;
   border-radius: 6px;
   cursor: pointer;
   transition: border-color 0.2s;
 }

 .dmsg-plan-card:hover, .dmsg-plan-card:has(input:checked) {
   border-color: #4CAF50;
   background-color: #f4gbf4;
 }

 .dmsg-badge {
   background: #2e7d32;
   color: #fff;
   font-size: 0.75em;
   padding: 2px 6px;
   border-radius: 4px;
   margin-left: 5px;
 }

 /* Itemized Summary Box */
 .dmsg-summary-box {
   background: #f9f9f9;
   border: 1px solid #e0e0e0;
   border-radius: 6px;
   padding: 15px;
   margin-top: 20px;
 }

 .dmsg-summary-row {
   display: flex;
   justify-content: space-between;
   margin-bottom: 8px;
   font-size: 0.95em;
 }

 .dmsg-summary-row.total {
   font-size: 1.15em;
   font-weight: bold;
   color: #1b5e20;
 }

 #dmsg-plugin-wrapper button {
   background: #4CAF50 !important;
   color: #fff !important;
   border: none !important;
   padding: 12px 20px !important;
   border-radius: 4px !important;
   cursor: pointer !important;
   font-weight: bold !important;
 }