/* ============================================
   GLOBAL STYLES
   ============================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }

.logo {
    width: 400px;
    margin-top: 25px;
    margin-bottom: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.logo-link {
  text-decoration: none;
}

.logo-link:hover,
.logo-link:focus,
.logo-link:active {
  text-decoration: none;
  outline: none;
}

p {
  font-size: 18px;
  font-weight: 400;
}

/* Hamburger Menu */
.menu-container {
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1000;
}
.menu-btn {
    background: #fff;
    color: black;
    padding: 10px 16px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}
.menu-btn:hover { background: #f4f4f4; }
.menu-dropdown {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    background: white;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 260px;
    overflow: hidden;
}
.menu-dropdown.show { display: block; }
.menu-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.2s;
    border-bottom: 1px solid #eee;
}
.menu-item:last-child { border-bottom: none; }
.menu-item:hover { background: #f5f5f5; }
.menu-item i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5000;
}
.modal-box {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 70%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
    box-sizing: content-box;
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: #000;
    cursor: pointer;
    line-height: 1;
}
.modal-close:hover {
    color: #FF0000;
}
.modal-content h2 {
    margin: 0 0 20px 0;
    font-size: 28px;
    color: #333;
    font-weight: 700;
}
.modal-content p {
    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 1.5;
    color: #666666;
}
.modal-content > div {
    margin: 0;
}
.modal-content button {
    padding: 0.5em 2.3em;
    font-size: 14px;
    border: 2px solid #000;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 12px;
    margin-top: 0;
    font-family: Arial, sans-serif;
    min-width: 120px;
    box-sizing: border-box;
}
.modal-btn-primary {
    background-color: green;
    color: #fff;
    border-color: green;
}

.modal-btn-primary:hover {
    background-color: #005a00;
    border-color: #005a00;
}

.modal-btn-secondary {
    background-color: red;
    color: #fff;
    border-color: red;
}

.modal-btn-secondary:hover {
    background-color: #b30000;
    border-color: #b30000;
}





/* ============================================
   HOMEPAGE
   ============================================ */
body.home-page {
  background: linear-gradient(to bottom, #378ADD, #1B2A4A);
  min-height: 100vh;
  box-sizing: border-box;
  margin: 0;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-tagline {
  color: #333333;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
}
.home-container {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  padding: 40px;
  width: 90%;
  max-width: 800px;
  margin-bottom: 48px;
  box-sizing: content-box;
  border: 3px solid #ffd100;
}
.home-subhead {
  color: #333333;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 32px;
  text-align: center;
}
.home-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.cta-btn-primary {
  background: #378ADD;
  color: #fff;
  border: 2px solid #378ADD;
}
.cta-btn-primary:hover {
  background: #185FA5;
}
.cta-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cta-btn-secondary:hover {
  background: rgba(255,255,255,0.15);
}
.home-container .cta-btn-secondary {
  background: transparent;
  color: #378ADD;
  border: 2px solid #378ADD;
}
.home-container .cta-btn-secondary:hover {
  background: #E6F1FB;
}
.pricing-text-mobile {
  display: none;
}
.home-features-section {
  display: flex;
  gap: 40px;
  align-items: center;
}

.home-features-image {
  flex: 1;
  max-width: 500px;
}

.home-features-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.home-feature-list {
  flex: 1;
}
.home-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  margin-bottom: 16px;
}
.home-feature-list li:last-child {
  margin-bottom: 0;
}
.home-feature-list i {
  color: #378ADD;
  font-size: 20px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}
.home-how-it-works {
  margin-top: 40px;
  text-align: center;
}
.home-how-it-works h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 24px;
}
.how-it-works-steps {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.how-step {
  flex: 1;
  min-width: 160px;
  max-width: 220px;
}
.how-step i {
  font-size: 32px;
  color: #378ADD;
  margin-bottom: 12px;
  display: block;
}
.how-step h3 {
  font-size: 22px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 8px;
}
.how-step p {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
}
.how-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: #ffd100;
  color: #fff;
  border-radius: 50%;
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 400;
}
.home-pricing {
  width: 90%;
  max-width: 800px;
  text-align: center;
  margin-bottom: 48px;
}
.home-pricing h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.pricing-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.pricing-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 8px;
  padding: 32px;
  width: 220px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  box-sizing: border-box;
  border: 3px solid #ffd100;
}
.pricing-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333333;
}
.pricing-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #378ADD;
  margin-bottom: 16px;
}
.pricing-card .price span {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
}
.pricing-card ul {
  list-style: none;
  margin-bottom: 24px;
}
.pricing-card li {
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  margin-bottom: 8px;
}
.home-faq {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 8px;
  padding: 40px;
  width: 90%;
  max-width: 800px;
  margin-bottom: 48px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  box-sizing: content-box;
  text-align: left;
  border: 3px solid #ffd100;
  margin-top: 20px;
}
.home-faq h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333333;
  margin-bottom: 24px;
  text-align: center;
}
.faq-item {
  margin-bottom: 20px;
}
.faq-item:last-child {
  margin-bottom: 0;
}
.faq-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #378ADD;
  margin-bottom: 6px;
}
.faq-item p {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  line-height: 1.5;
}
.home-footer {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  text-align: center;
  padding-top: 25px;
  white-space: nowrap;
}
.home-footer a {
  color: #fff;
  text-decoration: underline;
}






/* ============================================
   CREATE-ACCOUNT / LOGIN PAGE
   ============================================ */

body.login-page {
    background: linear-gradient(to bottom, #378ADD, #1B2A4A);
    background-attachment: fixed;
    min-height: 100vh;
    box-sizing: border-box;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

body.login-page h1 {
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.auth-container {
    background: rgba(255, 255, 255, 1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    padding: 20px 30px;
    margin: 0 0 20px 0;
    width: 100%;
    max-width: 400px;
    min-height: 410px;
}

.auth-container-2 {
    background: rgba(255, 255, 255, 1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    padding: 20px 30px;
    margin: 0 0 20px 0;
    width: 100%;
    max-width: 400px;
    min-height: 220px;
}

.tab-buttons {
    display: flex;
    justify-content: space-around;
    margin-bottom: -1px;
}

.tab-buttons button {
    flex: 1;
    padding: 10px;
    background: #ddd;
    border: 1px solid #ccc;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s, color 0.2s;
    line-height: 1.3;
    text-align: center;
    height: 58px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.tab-buttons button.active {
    background: #fff;
    border-bottom: 1px solid #fff;
    font-weight: bold;
}

.auth-container form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.auth-container-2 form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.auth-container input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.auth-container-2 input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.auth-container button[type="submit"] {
    padding: 10px;
    background: #378ADD;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
}

.auth-container-2 button[type="submit"] {
    padding: 10px;
    background: #378ADD;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
}

.auth-container button[type="submit"]:hover {
    background: #185FA5;
}

.auth-container-2 button[type="submit"]:hover {
    background: #185FA5;
}

.tab-content {
    display: none;
    min-height: 180px;
}

.tab-content.active {
    display: block;
}

.message {
    margin-top: 10px;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.message.show {
    opacity: 1;
}

.message.success {
    color: green;
}

.message.error {
    color: red;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    z-index: 2000;
}

#loadingOverlay {
    background: rgba(0, 0, 0, 0.0);
    align-items: flex-start;
    padding-top: 270px;
	z-index: 6000;
}

.loading-spinner {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 8px solid rgba(52, 152, 219, 0.2);
    border-top-color: #3498db;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
















/* ============================================
   PRIVACY AND TERMS PAGES
   ============================================ */
.policy-container {
    background: rgba(255, 255, 255, 0.97);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    margin: 0 0 48px 0;
    max-width: 800px;
    border: 3px solid #ffd100;
	width: 100%;
    padding: 24px;
    box-sizing: border-box;
}
.policy-container h2 {
    font-size: 28px;
    color: #333333;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
	line-height: 1.6;
}
.policy-container h3 {
    font-size: 22px;
    color: #333333;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 10px;
}
.policy-container p {
    font-size: 18px;
    color: #333333;
    line-height: 27px;
    margin-bottom: 15px;
}
.policy-container ul {
    padding-left: 60px;
    margin-left: 0;
    margin-bottom: 15px;
}
.policy-container li {
    font-size: 18px;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 8px;
}
.policy-container a {
    color: #378ADD;
    text-decoration: underline;
}






/* ============================================
   ALERT-PREFERENCES PAGE
   ============================================ */

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, #378ADD, #1B2A4A);
  color: #333333;
  padding: 20px;
}

.container {
  max-width: 980px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  padding: 16px;
  border: 1px solid #ddd;
  margin: 25px auto 0 auto;
  margin-bottom: 48px
}

h2 {
  color: #333333;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  width: 100%;
}

.page-intro {
  margin-bottom: 24px;
  font-size: 16px;
}

.free-note {
  background: #fff8e1;
  border-left: 3px solid #ffd100;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 16px;
  color: #333333;
  margin-bottom: 24px;
  line-height: 1.5;
  font-weight: 400;
}

.free-note a {
  color: #378ADD;
  font-weight: 400;
  text-decoration: none;
}

.free-note i {
  color: #378ADD;
  margin-right: 6px;
}

.free-note a:hover {
  text-decoration: underline;
}

.section { margin-bottom: 32px; }

.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.section-title { font-size: 22px; font-weight: 700; }

.league-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.league-tab {
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  color: #333333;
}

.league-tab:hover { background: #f4f4f4; }

.league-tab.active {
  border-color: #378ADD;
  background: #E6F1FB;
  color: #333333;
}

.league-panel { display: none; }
.league-panel.active { display: block; }

.team-city, .team-name {
  display: inline;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.team-btn {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-left: 25px solid;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
  color: #333333;
  text-align: left;
}

.team-btn:hover { background: #f4f4f4; border-color: #bbb; }

.team-btn.selected {
  border-color: #378ADD;
  background: #E6F1FB;
  color: #333333;
}

.team-check {
  margin-left: auto;
  font-size: 14px;
  opacity: 0;
  color: green;
  font-weight: 700;
}

.team-btn.selected .team-check { opacity: 1; }

.network-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.net-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
  color: #333333;
  text-align: center;
}

.net-btn:hover { background: #f4f4f4; border-color: #bbb; }

.net-btn.selected {
  border-color: #378ADD;
  background: #E6F1FB;
  color: #333333;
}

.net-check {
  margin-left: auto;
  font-size: 14px;
  opacity: 0;
  color: green;
  font-weight: 700;
}

.net-btn.selected .net-check { opacity: 1; }

.alert-type-grid {
  display: flex;
  gap: 8px;
}

.alert-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
  color: #333333;
  width: 160px;
}

.alert-btn:hover { background: #f4f4f4; }

.alert-btn.selected {
  border-color: #378ADD;
  background: #E6F1FB;
  color: #333333;
}

.alert-check {
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
  color: green;
  opacity: 0;
}

.alert-btn.selected .alert-check { opacity: 1; }

.save-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #eee;
  margin-top: 16px;
}

.sel-count { font-size: 16px; color: #333333; }
.sel-count span { font-weight: 400; color: #333333; }

.save-btn {
  padding: 8px 20px;
  border-radius: 8px;
  background: #378ADD;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}

.save-btn:hover { background: #185FA5; }

.tz-wrapper {
  position: relative;
  display: inline-block;
  width: 160px;
}
.tz-select {
  display: block;
  width: 160px;
  padding: 10px 32px 10px 14px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: Arial, sans-serif;
  background-color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.tz-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #333;
  font-size: 12px;
}





/* ================= Admin Broadcasts Page ================= */
.admin-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 400px;
}
.admin-input {
    padding: 10px 14px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: Arial, sans-serif;
}
.admin-btn {
    padding: 10px 20px;
    font-size: 15px;
    background-color: #378ADD;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: fit-content;
}
.admin-btn:hover {
    background-color: #2a6cb0;
}
.broadcast-item {
    font-family: Arial, sans-serif;
    font-size: 15px;
}
.broadcast-item button {
    padding: 4px 10px;
    font-size: 13px;
    background-color: #dc3545;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.broadcast-item button:hover {
    background-color: #b02a37;
}




/* 1024 Mobile Responsive Styles */
@media (max-width: 1024px) {
  .modal-box {
      max-height: 80vh;
      overflow-y: auto;
  }
  #modalContent > div {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
  }
  #modalContent button {
      margin: 0 0 12px 0;
      width: auto !important;
  }
}




@media (max-width: 1000px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .network-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}










/* 775 Mobile Responsive Styles */
@media (max-width: 775px) {
  body {
    padding: 32px 16px;
	background: linear-gradient(to bottom, #378ADD, #1B2A4A);
  }
  
    .menu-container {
        position: absolute;
        top: 10px;
        right: 10px;
    }
    .menu-btn {
        padding: 8px 12px;
        font-size: 16px;
    }
	
	.container {
  width: 100%;
  padding: 24px;
  border-radius: 8px;
  box-sizing: border-box;
}
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .network-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .save-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .save-btn {
    width: auto;
  }
  .team-btn {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: relative;
    padding-right: 28px;
	font-size: 13px;
  }
  .team-city {
    display: block;
  }
  .team-name {
    display: block;
  }
  .city-name-space {
    display: none;
  }
  .team-check {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
  
	  .net-btn {
	  font-size: 13px;
	}
	.alert-btn {
	  font-size: 13px;
	}
	
	body.home-page {
	  padding: 32px 16px;
	}
	.home-container {
	  width: 100%;
	  padding: 24px;
	  box-sizing: border-box;
	}
	.home-features-section {
	  flex-direction: column;
	  gap: 24px;
	}
	.home-features-image {
	  max-width: 378px;
	  margin: 16px auto 10px auto;
	}
	.how-it-works-steps {
	  flex-direction: column;
	  align-items: center;
	}
	.how-step {
	  max-width: 100%;
	}
	.home-pricing {
	  width: 100%;
	}
	.pricing-cards {
	  flex-direction: column;
	  align-items: center;
	}
	.pricing-card {
	  width: 100%;
	  max-width: 280px;
	  box-sizing: border-box;
	}
	.home-faq {
	  width: 100%;
	  padding: 24px;
	  box-sizing: border-box;
	}
	.home-cta-row {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .cta-btn {
    width: auto;
    text-align: center;
  }

  .pricing-text-desktop {
    display: none;
  }

  .pricing-text-mobile {
    display: block;
  }
}






/* 480 Mobile Responsive Styles */
@media (max-width: 480px) {
  body {
    padding: 32px 16px;
	background: linear-gradient(to bottom, #378ADD, #1B2A4A);
  }
  
	  .logo {
		width: 275px;
	}
	
	.container {
	  padding: 16px;
	}
	
	.team-btn {
	font-size: 11.50px;
	}
	
	.net-btn {
	  font-size: 11.50px;
	}
	
	.alert-btn {
	  font-size: 11.50px;
	}
	
	body.home-page {
	  padding: 24px 16px;
	}
	.home-container {
	  padding: 20px;
	  box-sizing: border-box;
	}
	.home-faq {
	  padding: 20px;
	  box-sizing: border-box;
	}
}

