@font-face {
    font-family: 'SF Pro Display';
    src: url('../fonts/SFPRODISPLAYREGULAR.OTF') format('opentype');
    font-weight: normal;
    font-style: normal;
}
body {
    background-color: var(--background-color-outer);
    font-family: 'SF Pro Display', Arial, sans-serif;
}
p{
    margin: 0;
}
.ps-gap-20px{
    gap: 20px;
}
.ps-gap-10px{
    gap: 10px;
}
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header-section {
    flex-shrink: 0; /* don't shrink */
}

.main-content {
    flex-grow: 1; /* grow to take available space */
}

.footer-section {
    flex-shrink: 0; /* don't shrink */
}

.psRadioPrimary {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  width: 16px;
  height: 15px;
  flex-shrink: 0;
  border: 1px solid var(--grey-light);
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  background: #fff;
  transition: background-color .2s ease, border-color .2s ease;
}

.psRadioPrimary:checked {
  background: var(--primary-color);
}
.psIpFieldPrimary, .social-btn, .psIpFieldPrimaryMultiField, .dataTables_filter input {
    border-radius: 6px !important;
    border: 1px solid #D9D9D9 !important;
    padding: 10px !important;
}
.psIpFieldPrimaryMultiField{
    padding: 5px;
}
.dataTables_info, .paginate_button {
    font-size: 14px;
}

.psBtnPrimary, .psBtnSecondary {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.psBtnPrimary{
    background: var(--primary-color);
    border: none;
    color: white;
}
.psBtnSecondary{
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.psBtnPrimary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
    color: white;
    background: var(--primary-color);
    opacity: 0.8;
}

.social-btn{
    flex: 1;                   /* make buttons take equal space */
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}
.social-btn:hover{
    background-color: var(--grey-light);
}
.psIpFieldPrimary, .psIpFieldPrimaryMultiField, .psInputGroupIndi{
    font-size: 12px;
}
textarea.psIpFieldPrimary {
  resize: none;
}
.psIpFieldPrimary::placeholder, .psIpFieldPrimaryMultiField::placeholder, .psInputGroupIndi::placeholder{
    color: var(--grey-medium);
}
.psInputGroupIndi {
    padding: 5px;
    border: none;
    outline: none;
    box-shadow: none;
}
.ps-error-text {
    color: #dc3545; /* Bootstrap’s standard error red */
    font-weight: 500;
    font-size: 0.875rem; /* about 14px */
}

/* Remove outlines, borders, shadows on focus and active */
.psInputGroupIndi:focus,
.psInputGroupIndi:active {
    outline: none;
    border: none;
    box-shadow: none;
}
.psIpFieldPrimaryMultiField:focus-within {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}
.psInputGroupIndi:first-child {
    border-right: 1px solid #D9D9D9;
    border-radius: 0;
}