/**
 * TMZOOM Contracts - Frontend Styles
 * Main entry point for frontend contract display
 * Uses Understrap Child Theme colors
 * 
 * Structure:
 * 1. Variables - Shared variables
 * 2. Mixins - Reusable patterns
 * 3. Frontend Components - Contract display elements
 */
/**
 * Variables
 * Global variables for colors, spacing, shadows, etc.
 * Matches Understrap Child Theme colors
 */
/**
 * Mixins
 * Reusable SCSS mixins
 */
/**
 * Frontend Contract Display
 * Styles for displaying contracts on the frontend
 */
.tmzoom-contract {
  background: #fff;
  border: 0.0625rem solid #d1d5db;
  border-radius: 0 !important;
  padding: 1rem;
  margin: 1rem 0;
}
.tmzoom-contract-header {
  border-bottom: 0.0625rem solid #eee;
  padding-bottom: 0.9375rem;
  margin-bottom: 1rem;
}
.tmzoom-contract-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 0 0.625rem 0;
}
.tmzoom-contract-meta {
  font-size: 0.875rem;
  color: #585858;
}
.tmzoom-contract-content {
  line-height: 1.6;
  margin-bottom: 1rem;
}
.tmzoom-contract-footer {
  border-top: 0.0625rem solid #eee;
  padding-top: 0.9375rem;
  text-align: center;
}
.tmzoom-contract-signature {
  margin: 1rem 0;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 0.375rem;
}

.tmzoom-signature-field {
  margin: 0.625rem 0;
}
.tmzoom-signature-field label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.25rem;
}
.tmzoom-signature-field input {
  width: 100%;
  max-width: 18.75rem;
  padding: 0.5rem;
  border: 0.0625rem solid #d1d5db;
  border-radius: 0 !important;
}

.tmzoom-button {
  display: inline-block;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border-radius: 0.375rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  background-color: #DDFC74;
  border: 0.0625rem solid #DDFC74;
  color: #fff;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
}
.tmzoom-button:hover {
  background-color: rgb(208.7887323944, 250.9225352113, 66.0774647887);
  border-color: rgb(208.7887323944, 250.9225352113, 66.0774647887);
}
.tmzoom-button.secondary {
  background-color: #f0f0f1;
  color: #000000;
  border-color: #f0f0f1;
}
.tmzoom-button.secondary:hover {
  background-color: #dcdcde;
  border-color: #dcdcde;
}

@media (max-width: 48rem) {
  .tmzoom-contract {
    margin: 0.625rem 0;
    padding: 0.9375rem;
  }
  .tmzoom-contract-title {
    font-size: 1.25rem;
  }
  .tmzoom-signature-field input {
    max-width: 100%;
  }
}