/* Base Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.5;
  }
  
  /* Container Classes */
  .mic-container {
    padding: 0.01em 16px;
    max-width: 980px;
    margin: 0 auto;
  }
  
  .mic-center {
    text-align: center !important;
  }
  
  /* Layout Classes */
  .mic-col {
    flex: 1 0 auto;
    padding: 0 8px;
  }
  
  /* Row container - required for proper half width elements */
  .mic-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -8px;
}

.mic-half {
    width: 50%;
    padding: 0 8px;
    box-sizing: border-box;
}
  
  /* Clear fix for float-based layouts */
  .mic-row::after, 
  .mic-row::before {
    content: "";
    display: table;
    clear: both;
  }

  .mic-responsive {
    display: block;
    overflow-x: auto;
  }

  /* Responsive breakpoint for small screens */
  @media (max-width: 768px) {
    .mic-row {
      display: block;  /* Change from flex to block */
    }
    
    .mic-half {
      width: 100%;     /* Full width on small screens */
      float: none;     /* Remove float */
      padding: 0;      /* Reset padding */
      margin-bottom: 15px; /* Add spacing between stacked elements */
    }
    
    .mic-container {
      padding: 0.01em 8px; /* Smaller padding on mobile */
    }
    
    .form-container {
      padding: 12px;   /* Smaller padding on mobile */
    }
  }

  /* Margin and Spacing Classes */
  .mic-margin-top {
    margin-top: 16px !important;
  }
  
  .small-vertical-margin {
    padding: 4px 2px;
  }
  
  /* Text Sizing */
  .mic-small {
    font-size: 12px !important;
  }
  
  .mic-medium {
    font-size: 16px !important;
  }
  
  .mic-large {
    font-size: 18px !important;
  }
  
  .mic-xlarge {
    font-size: 24px !important;
  }
  
  /* Text Colors */
  .mic-text-white {
    color: white !important;
  }
  
  .mic-text-blue {
    color: #2196F3 !important;
  }
  
  .mic-text-green {
    color: #4CAF50 !important;
  }  
  
  .mic-text-yellow {
    color: #FFEB3B !important;
  }
  
  .mic-text-red {
    color: #F44336 !important;
  }
  
  /* Background Colors */
  .mic-blue {
    background-color: #2196F3 !important;
    color: white !important;
  }
  
  .mic-light-grey {
    background-color: #f1f1f1 !important;
  }
  
  .mic-red {
    background-color: #F44336 !important;
    color: white !important;
  }
  
  .mic-green {
    background-color: #4CAF50 !important;
    color: white !important;
  }
  
  /* Border and Shape Classes */
  .mic-round {
    border-radius: 4px !important;
  }
  
  .mic-border {
    border: 1px solid #ccc !important;
  }
  
  /* Form Components */
  .mic-input {
    padding: 8px;
    display: block;
    border: 1px solid #ccc;
    width: 100%;
    color: black;
    box-sizing: border-box;
  }
  
  .mic-radio {
    vertical-align: middle;
    margin-right: 4px;
  }
  
  select.mic-input {
    color: black;
  }
  
  select.mic-input option {
    color: black;
  }
  
  /* Button Styles */
  .mic-button {
    border: none;
    display: inline-block;
    padding: 8px 16px;
    vertical-align: middle;
    overflow: hidden;
    text-decoration: none;
    color: white;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    margin: 2px 3px;
    border-radius: 4px;
  }
  
  .button-link {
    display: inline-block;
    padding: 1px 6px;
    background-color: #4CAF50;
    color: white;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 2px 3px;
  }
  
  /* Page-Specific Styles */
/* Background image pattern */
.bgimg {
    background-image: url('w3images/ppr02.png');
    background-repeat: repeat;
    background-size: auto;
    background-position: center;
    padding: 16px;
    border-radius: 5px;
}

/* Header container specific styling */
.header-container {
    max-width: 800px;
    margin: 20px auto;
    background-color: transparent !important;
}
  
  /* Update the form-container class to have a more specific max-width */
  .form-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 6px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f7c7f7;
  }
  
  /* License Label Styles */
  .lic-label {
    padding: 1px 8px;
    margin: 0;
    display: inline-block;
    border-radius: 4px;
    font-size: 10px;
  }
  
  .lic-label-free {
    background-color: #CCCCCC;
    border: 1px solid #919191;
  }
  
  .lic-label-std {
    background-color: #93D2FF;
    border: 1px solid #3DAEFF;
  }
  
  .lic-label-pro {
    background-color: #E4AAFF;
    border: 1px solid #D175FF;
  }
  
  /* Table Styles */
  .mic-table {
    width: 100%;
    border-collapse: collapse;
  }
  
  /* Error Message Display */
  #errmsg {
    padding: 8px;
    margin-top: 8px;
    display: inline-block;
    border-radius: 4px;
  }