html, body {
    margin: 0;
    padding: 0;
    width: 100%;
     min-height: 100%;
    box-sizing: border-box;
}


#mainContent.wrapper-body,
.wrapper-body,
.page-copy {
    width: 100% !important;
    max-width: 100% !important; 
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
}


.section,
.layout {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
}

.summary-container {
    width: 100% !important;
    margin: 0 auto !important;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    box-sizing: border-box;
}

.summary-title {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.summary-intro {
    font-size: 1em;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
}

.summary-group {
    width: 100% !important;  
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.summary-container #table {
    display: table;
  
    width: 100%;
    table-layout: fixed;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.summary-container .table-row {
    display: table-row;
}

.summary-container .table-body-cell {
    display: table-cell;
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
    vertical-align: middle;
    word-wrap: break-word;
    white-space: normal;
    font-size: 1em;
    color: #333;
    box-sizing: border-box;
}


.summary-container .question-cell {
    width: 45%;
}

.summary-container .answer-cell {
    width: 45%;
}

.summary-container .edit-cell {
    width: 10%;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

.summary-container .edit-link {
    display: inline-block;
    background-color: #0675c6;
    color: #fff !important;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9em;
    margin: 0;
    white-space: nowrap;
}

.summary-container .edit-link:hover {
    background-color: #055a99;
    text-decoration: none;
}

.summary-container .group-header-row .group-header-cell {
    background: #0675c6;
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    text-align: left;
}

.summary-container .group-header-empty {
    background: #0675c6;
    border-bottom: 1px solid #ccc;
}


@media (max-width: 768px) {
    .summary-container #table {
        display: block;
    }
    .summary-container .table-body-cell {
        display: block;
        width: 100% !important;
    }
}
.submission-container {
    /* Center it and give spacing */
    max-width: 600px;
    margin: 2rem auto;
    padding: 1.5rem;
    /* Subtle background & border */
    background-color: #f9f9f9;
    border: 2px solid #ddd;
    border-radius: 8px;
  }

  .submission-container h3 {
    margin-top: 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
  }

  .submission-container label {
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer; /* so hovering over text also highlights checkbox */
    display: inline-flex;
    align-items: center;
  }

  #confirmSubmissionCheckbox {
    /* Make checkbox a bit bigger than default */
    transform: scale(1.3);
    margin-right: 0.5rem;
  }

  #submitApplicationBtn {
    /* Make button bigger, brand color, etc. */
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    background-color: #0078d4; 
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem; 
    display: inline-block;
  }
  #submitApplicationBtn:hover {
    background-color: #005a9e; 
  }
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  main {
    flex: 1;
  }

  .unsecure-page-container {
    width: 75%!important;
    max-width: 100%!important;
  }