.login-reg-wrapper {
    display: flex;
    width: 443px;
    padding: var(--padding-top-bottom, 40px) var(--padding-left-right, 56px);
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    border-radius: var(--border-radius-block, 16px);
    border: 1px solid var(--block-border, #eee);
    background: var(--white, #fff);
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
    margin: auto;
  }
  .center-wrap {
    height: calc(100vh - 128px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 48px;
  }
  .login-reg-wrapper .title {
    color: #363d4d;
    font-family: Fustat;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
  }
  .login-reg-wrapper .title.text-center {
    text-align: center;
    width: 100%;
  }
  .input-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 16px;
  }
  .input-wrap input {
    padding: 13px 18px;
    outline: none;
    width: 100%;
    border-radius: var(--border-radius-btn, 8px);
    border: 1px solid var(--grey-line, #e1e1e1);
    background: #fff;
    font-family: Fustat;
    font-weight: 500;
    font-size: 14px;
    color: rgba(20, 20, 20, 1);
    transition: 0.2s all ease;
  }
  .input-wrap input::placeholder {
    font-family: Fustat;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    color: rgba(111, 111, 115, 1);
  }
  .input-wrap label {
    color: rgba(54, 61, 77, 1);
    font-family: Fustat;
    font-weight: 600;
    font-size: 13px;
    line-height: 100%;
    pointer-events: none;
    transition: 0.25s ease;
    margin-bottom: 10px;
    display: block;
  }
  
  /* Focus border */
  .input-wrap input:focus {
    border-color: rgba(45, 94, 238, 1);
  }
  .login-reg-form {
    width: 100%;
  }
  .input-wrap .toggle-password {
    position: absolute;
    right: 15px;
    top: 35px;
    height: 20px;
    width: 20px;
    background-image: url("/assets/icons/eye-closed.svg");
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: 0.2s;
  }
  .input-wrap .toggle-password.show {
    background-image: url("/assets/icons/eye-show.svg");
  }
  .login-bottom {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .login-bottom a {
    font-family: Fustat;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    color: rgba(111, 111, 115, 1);
    text-decoration: none;
    transition: 0.2s;
  }
  .login-bottom a:hover {
    color: rgba(45, 94, 238, 1);
  }
  .social-logins-wrapper a.social-login {
    transition: 0.2s;
  }
  .social-logins-wrapper a.social-login:hover {
    border: 1px solid rgba(45, 94, 238, 1);
  }
  .title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
  }
  .title-row .verification-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: Fustat;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    vertical-align: middle;
    color: #363d4d;
  }
  .personal-info-row {
    display: flex;
    gap: 16px;
  }
  .personal-info-row .personal-info-box,
  .personal-info-row .password-change-box {
    border-radius: var(--border-radius-block, 16px);
    border: 1px solid var(--block-border, #eee);
    background: var(--white, #fff);
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
    padding: var(--padding-top-bottom, 40px) var(--padding-left-right, 56px);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .two-cols-inputs {
    display: flex;
    gap: 12px;
  }
  .phone-wrap .phone-input {
    border-radius: 0px 10px 10px 0px;
    margin-left: -1px;
  }
  .phone-wrap .phone-input:focus {
    z-index: 10;
  }
  .personal-info-row form input[type="submit"] {
    margin-top: 14px;
  }
  input[type="submit"]:disabled {
    background-color: #eeeeee;
    color: rgba(159, 159, 159, 1);
    border: 2px solid rgba(246, 246, 246, 1);
  }
  input[type="submit"]:disabled:hover {
    background-color: #eeeeee;
    color: rgba(159, 159, 159, 1);
    border: 2px solid rgba(246, 246, 246, 1);
  }
  .certificates-wrap {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .certificates-wrap .title-with-btn {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 25px;
  }
  .certificates-wrap .title-with-btn .add-new-cert {
    width: 40px;
    height: 40px;
    background-color: rgba(45, 94, 238, 1);
    border-radius: 8px;
    background-image: url("/assets/icons/button-plus.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px 14px;
    border: 2px solid #2d5eee;
  }
  .certificates-wrap .title-with-btn .add-new-cert:hover {
    background-color: #ffffff;
    background-image: url("/assets/icons/blue-plus.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px 14px;
  }
  .certificates-wrap .certificates-list .certificate {
    border-radius: var(--border-radius-block, 16px);
    border: 1px solid var(--block-border, #eee);
    background: var(--white, #fff);
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.05);
    padding: var(--padding-top-bottom, 40px) var(--padding-left-right, 56px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }
  .certificates-wrap .certificates-list .certificate.edit {
    border: 1px solid rgba(45, 94, 238, 0.35);
    box-shadow: 0 5px 15px 0 rgba(29, 57, 139, 0.1);
  }
  .certificates-wrap .certificates-list .certificate .input-wrap.number-input {
    max-width: 274px;
  }
  .input-wrap input:disabled {
    background: #eeeeee;
  }
  
  .input-wrap textarea:disabled,
  .input-wrap select:disabled {
    background: #eeeeee;
  }
  
  input:disabled:not([type="checkbox"]):not([type="radio"]),
  textarea:disabled,
  select:disabled,
  .form-input:disabled,
  input[readonly]:not([type="checkbox"]):not([type="radio"]),
  textarea[readonly],
  select[readonly],
  .form-input[readonly] {
    background-color: #eeeeee !important;
  }
  .certificates-wrap .certificates-list .certificate .input-wrap.date-input {
    max-width: 168px;
  }
  .certificates-wrap .certificates-list .certificate .cert-inputs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
  }
  .cert-actions .cert-edit {
    background-image: url("/assets/icons/cert-edit.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px 14px;
    width: 14px;
    height: 14px;
    display: block;
  }
  .cert-actions .cert-delete {
    background-image: url("/assets/icons/cert-trash.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px 14px;
    width: 14px;
    height: 14px;
    display: block;
  }
  .cert-actions .cert-delete:hover {
    background-image: url("/assets/icons/cert-trash-blue.svg");
  }
  .cert-actions .cert-edit:hover {
    background-image: url("/assets/icons/cert-edit-blue.svg");
  }
  .cert-actions .cert-global-actions {
    display: flex;
    gap: 14px;
  }
  .certificates-wrap
    .certificates-list
    .certificate.edit
    .cert-actions
    .cert-edit {
    opacity: 0.3;
  }
  .input-wrap.date-input input[type="date"]::-webkit-inner-spin-button,
  .input-wrap.date-input input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
  }
  .input-wrap.date-input input {
    background-image: url("/assets/icons/calendar-input.svg");
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: right 16px center;
  }
  .cert-actions {
    display: flex;
    align-items: center;
    gap: 40px;
  }
  .cert-actions .edit-actions {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .cert-actions .edit-actions .cert-cancel,
  .cert-actions .edit-actions .cert-save {
    gap: 8px;
    display: flex;
    border-radius: 6px;
    padding: 6px 8px;
    font-family: Fustat;
    font-weight: 700;
    font-size: 13px;
    line-height: 100%;
  }
  .cert-actions .edit-actions .cert-cancel:hover,
  .cert-actions .edit-actions .cert-save:hover {
    background: #2d5eee14;
  }
  .account-deletion-notice {
    gap: 12px;
    display: flex;
    align-items: center;
    font-family: Fustat;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
  }
  .person-info-section {
    padding-bottom: 120px;
  }
  .file-input-container {
    max-width: 240px;
  }
  
  .file-input-container .label {
    display: block;
    margin-bottom: 10px;
    font-family: Fustat;
    font-weight: 700;
    font-size: 13px;
    line-height: 100%;
    color: #363d4d;
  }
  
  .file-input-container .file-input-wrapper {
    position: relative;
    width: 100%;
  }
  
  /* Hide the default file input */
  .file-input-container .file-input-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* Custom styled button */
  .file-input-container .file-input-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 0px;
    background-color: transparent;
    color: #2d5eee;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    font-family: Fustat;
    font-weight: 700;
    font-size: 13px;
    line-height: 100%;
  }
  
  /* Selected file display */
  .file-input-container .selected-file {
    margin-top: 12px;
    display: none;
  }
  
  .file-input-container .selected-file.show {
    display: flex;
  }
  
  .file-input-container .file-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 14px 14px 40px;
    background-color: #eaeffe;
    border-radius: 8px;
    font-family: Fustat;
    font-weight: 600;
    font-size: 11px;
    line-height: 100%;
    background-image: url("/assets/icons/attach_v2.svg");
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: left 15px center;
    color: #2d5eee;
  }
  
  .file-input-container .file-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
  
  .file-input-container .file-name {
    color: #2563eb;
  }
  
  .file-input-container .remove-file {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #2563eb;
    transition: color 0.2s;
  }
  
  .file-input-container .remove-file:hover {
    color: #1d4ed8;
  }
  
  .file-input-container .remove-file svg {
    width: 16px;
    height: 16px;
  }
  .file-input-button.hidden {
    display: none;
  }
  /* Make header relative */
  .flatpickr-months {
    position: relative;
    display: flex;
    justify-content: center; /* center month/year */
    padding: 0 10px;
    padding-bottom: 10px;
  }
  
  /* Position both arrows in top right */
  .flatpickr-prev-month,
  .flatpickr-next-month {
    position: absolute;
    top: 10px;
  }
  
  /* First arrow */
  .flatpickr-prev-month {
    right: 40px; /* space between arrows */
    left: unset !important;
  }
  
  /* Second arrow */
  .flatpickr-next-month {
    right: 10px;
  }
  
  /* Optional: make arrows cleaner */
  .flatpickr-prev-month svg,
  .flatpickr-next-month svg {
    width: 18px;
    height: 18px;
  }
  .flatpickr-calendar.open {
    display: inline-block !important;
    z-index: 99999 !important;
    padding: 32px 48px !important;
    border-radius: 16px !important;
    width: fit-content !important;
  }
  .flatpickr-calendar .numInputWrapper .arrowUp,
  .flatpickr-calendar .numInputWrapper .arrowDown {
    display: none !important;
  }
  .flatpickr-calendar .flatpickr-current-month {
    display: flex !important;
    width: 100% !important;
    left: 0 !important;
    align-items: center !important;
    padding: 0 !important;
    gap: 10px !important;
  }
  .flatpickr-current-month .flatpickr-monthDropdown-months:hover {
    background-color: #fff;
    background-image: url("/assets/icons/month-arrow-down.svg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 10px;
  }
  .flatpickr-calendar .numInputWrapper:hover {
    background-color: #fff !important;
  }
  .flatpickr-current-month .flatpickr-monthDropdown-months {
    font-family: Fustat !important;
    font-weight: 600 !important;
    font-size: 22px !important;
    line-height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-color: #fff !important;
    background-image: url("/assets/icons/month-arrow-down.svg") !important;
    background-repeat: no-repeat !important;
    background-position: right center !important;
    background-size: 10px !important;
    padding-right: 15px !important;
  }
  .flatpickr-calendar .custom-year-select {
    border: 0;
    outline: 0;
    font-family: Fustat;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #9f9f9f;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    background-image: url("/assets/icons/year-arrow-down.svg");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 10px;
    padding-right: 15px !important;
    cursor: pointer !important;
  }
  .flatpickr-months .flatpickr-prev-month,
  .flatpickr-months .flatpickr-next-month {
    height: 20px !important;
    padding: 5px !important;
  }
  .flatpickr-day {
    border-radius: 16px !important;
    font-family: Fustat !important;
    font-weight: 700 !important;
    font-size: 14px !important;
  }
  .flatpickr-day.selected {
    background: #2d5eee !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    color: #fff !important;
    border-color: #2d5eee !important;
  }
  .flatpickr-day:hover {
    cursor: pointer !important;
    outline: 0 !important;
    background: #eaeffe !important;
    border-color: #eaeffe !important;
    color: #2d5eee !important;
  }
  .flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
  .flatpickr-months .flatpickr-next-month.flatpickr-next-month {
    right: 10px !important;
  }
  .flatpickr-months .flatpickr-prev-month:hover,
  .flatpickr-months .flatpickr-next-month:hover {
    opacity: 0.5;
  }
  .delete-acc {
    font-family: Fustat;
    font-weight: 600;
    font-size: 14px;
    color: #eb3831;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    width: fit-content;
    padding: 4px 10px;
  }
  .delete-acc:hover {
    background-color: #eb38311a;
    padding: 4px 10px;
    border-radius: 6px;
  }
  .free-trial-section {
    padding-bottom: 80px;
  }
  .free-trial-section .box-header .title {
    font-family: Fustat;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #363d4d;
    margin-top: 20px;
    margin-bottom: 8px;
  }
  .free-trial-section .box-header .desc {
    font-family: Fustat;
    font-weight: 500;
    font-size: 16px;
    color: #363d4d;
  }
  .free-trial-section .box-header .desc span {
    font-family: Fustat;
    font-weight: 700;
    font-size: 16px;
    color: #2d5eee;
  }
  .free-trial-section .box-header,
  .free-trial-section .box-input-wrap {
    margin-bottom: 40px;
  }
  .box-input-wrap .input-desc {
    font-family: Fustat;
    font-weight: 400;
    font-size: 13px;
    padding: 0 10px;
    color: #6f6f73;
  }
  .box-input-wrap.input-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 10px;
  }
  .free-trial-section .plan-title {
    font-family: Fustat;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0%;
    text-align: center;
    color: #363d4d;
  }
  .free-trial-section .plan-box {
    padding: 24px 32px;
    background-color: #f9f9f9;
    width: fit-content;
    margin: auto;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
    margin-top: 16px;
    margin-bottom: 16px;
  }
  .free-trial-section .plan-box .price {
    font-family: Fustat;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0%;
    text-align: center;
    color: #27c96a;
  }
  .free-trial-section .plan-box .storage {
    display: flex;
    gap: 6px;
    font-family: Fustat;
    font-weight: 800;
    font-size: 22px;
    color: #363d4d;
    align-items: center;
  }
  .free-trial-section .plan-box .storage img {
    margin-top: -2px;
  }
  .free-trial-section .addtitional-pricing {
    font-family: Fustat;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    color: #363d4d;
  }
  .free-trial-section .free-trial-wrapper {
    max-width: 672px;
    margin: auto;
  }
  .free-trial-section .buttons-wrap {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
  }
  .free-trial-section .buttons-wrap button {
    min-width: 215px;
    justify-content: center;
  }
  .edz-creation .edz-creation-wrapper {
    max-width: 902px;
    margin: auto;
  }
  .edz-creation .billing__title {
    text-align: center;
    margin: 0 0 14px;
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
  }
  
  .edz-creation .billing__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .edz-creation .plan {
    cursor: pointer;
    display: block;
  }
  
  .edz-creation .plan__radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  
  .edz-creation .plan__card {
    position: relative;
    display: block;
    background: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    padding: 20px 24px 24px 50px;
    transition: all 0.15s ease;
    min-height: 84px;
  }
  .edz-creation .plan__dot {
    position: absolute;
    left: 24px;
    top: 24px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    transition: all 0.2s ease;
    border: 1px solid #e1e1e1;
  }
  .edz-creation .plan__top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
  .edz-creation .plan__term {
    font-family: Fustat;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0%;
    text-align: center;
    color: #363d4d;
  }
  .edz-creation .plan__per {
    font-family: Fustat;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0%;
    color: #363d4d;
  }
  .edz-creation .plan__per-muted {
    font-family: Fustat;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #6f6f73;
    margin-left: 4px;
  }
  .edz-creation .plan__bottom {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .edz-creation .plan__price {
    font-family: Fustat;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0%;
    text-align: center;
    color: #363d4d;
  }
  .edz-creation .plan__old {
    color: #27c96a;
    font-family: Fustat;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    text-decoration: line-through;
  }
  .edz-creation .plan__badge {
    margin-left: auto;
    background: #27c96a;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 8px;
    font-family: Fustat;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
  }
  
  /* SELECTED STATE */
  .edz-creation .plan__radio:checked + .plan__card {
    border-color: #2d5eee;
  }
  /* selected state */
  .edz-creation .plan__radio:checked + .plan__card .plan__dot {
    background: #2d5eee; /* blue circle */
    border: 1px solid #2d5eee;
  }
  /* white inner circle */
  .edz-creation .plan__radio:checked + .plan__card .plan__dot::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }
  
  /* focus */
  .edz-creation .plan__radio:focus-visible + .plan__card {
    outline: 3px solid rgba(47, 107, 255, 0.25);
    outline-offset: 2px;
  }
  .edz-creation .company-row .agree {
    justify-content: center;
  }
  .edz-creation .company-fields {
    transition: 0.3 s all ease-out;
  }
  .country-select .select2-container {
    width: 100% !important;
  }
  .country-select .select2-container .select2-selection--single {
    border-radius: 8px;
  }
  .edz-creation {
    padding-bottom: 80px;
  }
  .successful-creation {
    gap: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .successful-creation .success-btn {
    margin-top: 32px;
  }
  .successful-creation img {
    margin-bottom: 10px;
  }
  .change-payer .edz-creation-wrapper {
    max-width: 443px;
    margin: auto;
  }
  .change-payer {
    padding-bottom: 80px;
  }
  .change-payer-form .agree {
    margin-top: 0;
  }
  .change-payer-form input[type="submit"] {
    margin-top: 12px;
  }
  .owner-change form {
    width: 100%;
  }
  .owner-change-wrap .login-reg-wrapper {
    margin: 0;
  }
  .owner-change-wrap {
    flex-direction: column;
  }
  .owner-change-wrap .title {
    font-family: Fustat;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0%;
    color: #363d4d;
    margin-bottom: 30px;
  }
  .owner-change-wrap .desc {
    font-family: Fustat;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #6f6f73;
    text-align: center;
    margin-bottom: 24px;
  }
  .owner-change-wrap h2 {
    margin-top: 0;
  }
  .owner-change-wrap img {
    margin-bottom: 24px;
  }
  .duk .mob-sidebar {
    display: none;
  }
  .duk .close-sidebar {
    display: none;
  }
  .sidebar .contact-box .text {
    text-align: center;
  }
  .journal-ending-list-section {
    padding: 40px 0 60px;
  }
  .journal-ending-list-top {
    margin-bottom: 22px;
  }
  .journal-ending-list-top h1 {
    font-family: Fustat;
    font-weight: 700;
    font-size: 26px;
    color: #363d4d;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .journal-ending-list-count {
    background-color: #2d5eee;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    min-width: 28px;
    height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .journal-ending-list-table th {
    color: #363d4d;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .journal-ending-list-table td {
    padding: 22px 0;
    color: #363d4d;
    vertical-align: middle;
  }
  .journal-ending-list-table .form-tag {
    width: 52px;
    height: 28px;
    border-radius: 18px;
    font-size: 13px;
  }
  .journal-ending-list-action-cell {
    text-align: right;
    width: 140px;
  }
  .journal-ending-list-review-btn {
    padding: 10px 22px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    display: inline-block;
  }
  
  @media (max-width: 768px) {
    .journal-ending-list-top h1 {
      font-size: 20px;
    }
    .journal-ending-list-table td {
      padding: 14px 8px;
      font-size: 13px;
    }
    .journal-ending-list-review-btn {
      padding: 8px 14px;
      font-size: 12px;
    }
  }
  
  .journal-ending-invitation-section {
    padding: 120px 0 60px;
  }
  .journal-ending-invitation-wrap {
    display: flex;
    justify-content: center;
  }
  .journal-ending-invitation-card {
    width: 100%;
    max-width: 860px;
    background-color: #fff;
    border-radius: 20px;
    padding: 40px;
  }
  .journal-ending-invitation-title {
    font-family: Fustat;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.35;
    color: #363d4d;
    margin: 0 0 14px;
  }
  .journal-ending-invitation-description {
    font-size: 14px;
    line-height: 1.6;
    color: #6f6f73;
    margin: 0 0 24px;
  }
  .journal-ending-invitation-description strong {
    color: #363d4d;
    font-weight: 700;
  }
  .journal-ending-invitation-info {
    background-color: #f4f6f8;
    border-radius: 14px;
    padding: 20px 28px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 22px;
  }
  .journal-ending-invitation-info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
  }
  .journal-ending-invitation-owner {
    flex: 1 1 220px;
  }
  .journal-ending-invitation-label {
    font-weight: 600;
    font-size: 13px;
  }
  .journal-ending-invitation-value {
    font-weight: 600;
    font-size: 16px;
    color: #363d4d;
  }
  .journal-ending-invitation-owner-name {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 18px;
    color: #22b573;
  }
  .journal-ending-invitation-owner-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #22b573;
    position: relative;
    flex-shrink: 0;
  }
  .journal-ending-invitation-owner-check::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 5px;
    width: 5px;
    height: 8px;
    border: solid #fff;
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
  }
  .journal-ending-invitation-sign-btn {
    display: block;
    width: 100%;
    text-align: center;
  
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    border-radius: 10px;
  }
  
  @media (max-width: 768px) {
    .journal-ending-invitation-section {
      padding: 60px 0 40px;
    }
    .journal-ending-invitation-card {
      padding: 28px 22px;
      border-radius: 16px;
    }
    .journal-ending-invitation-title {
      font-size: 18px;
    }
    .journal-ending-invitation-info {
      gap: 16px;
      padding: 16px 18px;
    }
    .journal-ending-invitation-info-item {
      flex: 1 1 calc(50% - 16px);
    }
    .journal-ending-invitation-owner {
      flex-basis: 100%;
    }
  }
  
  .journal-ending-complete-section {
    padding: 140px 0 60px;
  }
  .journal-ending-complete-wrap {
    display: flex;
    justify-content: center;
  }
  .journal-ending-complete-card {
    width: 100%;
    max-width: 560px;
    background-color: #fff;
    border-radius: 16px;
    padding: 44px 40px 36px;
    text-align: center;
  }
  .journal-ending-complete-check {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #e6f7ee;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .journal-ending-complete-check-mark {
    display: block;
    width: 18px;
    height: 10px;
    border: solid #27c96a;
    border-width: 0 0 1.5px 1.5px;
    transform: rotate(-45deg) translateY(-2px);
  }
  .journal-ending-complete-title {
    font-family: Fustat;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.35;
    color: #363d4d;
    margin: 0 0 28px;
  }
  .journal-ending-complete-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
  }
  .journal-ending-complete-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 14px;
    color: #363d4d;
    text-decoration: none;
    transition: color 0.15s ease;
  }
  .journal-ending-complete-link:hover {
    color: #2d5eee;
  }
  .journal-ending-complete-link img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
  
  @media (max-width: 640px) {
    .journal-ending-complete-section {
      padding: 60px 0 40px;
    }
    .journal-ending-complete-card {
      padding: 32px 22px 28px;
    }
    .journal-ending-complete-title {
      font-size: 18px;
    }
    .journal-ending-complete-actions {
      gap: 20px;
    }
  }
  
  .journal-ending-complete2-card {
    padding: 44px 40px;
  }
  .journal-ending-complete2-card .journal-ending-complete-check {
    margin-bottom: 18px;
  }
  .journal-ending-complete2-title {
    margin: 0;
  }
  
  @media (max-width: 640px) {
    .journal-ending-complete2-card {
      padding: 32px 22px;
    }
  }
  
  .auth-flash-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0px 40px 0;
    position: absolute;
    width: 100%;
  }
  .auth-flash {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    border-radius: 999px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    box-shadow: 0 4px 14px rgba(16, 24, 40, 0.08);
  }
  .auth-flash-success {
    background-color: #22b573;
  }
  .auth-flash-error {
    background-color: #e03434;
  }
  .auth-flash-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #fff;
    flex-shrink: 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .auth-flash-icon-check::after {
    content: "";
    width: 10px;
    height: 6px;
    border: solid #fff;
    border-width: 0 0 2px 2px;
    transform: rotate(-45deg) translate(1px, -1px);
  }
  .auth-flash-icon-alert::before {
    content: "";
    width: 2px;
    height: 8px;
    background-color: #fff;
    border-radius: 2px;
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
  }
  .auth-flash-icon-alert::after {
    content: "";
    width: 2px;
    height: 2px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  @media (max-width: 768px) {
    .auth-flash-bars {
      padding: 16px 16px 0;
    }
    .auth-flash {
      padding: 12px 18px;
      font-size: 14px;
    }
  }
  
  .phone-wrap {
    flex-wrap: wrap;
  }
  .phone-wrap .error-message {
    flex-basis: 100%;
    order: 99;
  }
  .input-wrap.phone-wrap.error .phone-input {
    border-color: #eb3831 !important;
  }
  
  /* ===== TABLE ===== */
  .object-address {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .object-address-pin {
    display: inline-flex;
    align-items: center;
  }
  .object-address-pin img {
    width: 18px;
    height: 18px;
  }
  
  .status-text {
    font-weight: 500;
  }
  .status-text.status-active {
    color: #15803d;
  }
  .status-text.status-inactive {
    color: #9aa1ad;
  }
  .status-text.status-overdue {
    color: #f59e0b;
  }
  
  .object-participants-cell {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .object-participants-count {
    font-weight: 500;
    min-width: 16px;
  }
  .object-participants-add {
    width: 32px;
    height: 32px;
    border: none;
    background: #2d5eee;
    border-radius: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.15s;
  }
  .object-participants-add:hover {
    background: #2451d6;
  }
  .object-participants-add .button-plus {
    width: 36px;
    height: 36px;
    background-color: rgba(45, 94, 238, 1);
    border-radius: 8px;
    background-image: url(/assets/icons/button-plus.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 14px 14px;
    border: 2px solid #2d5eee;
    display: block;
    min-width: 36px;
  }
  
  .object-participants-add .button-plus:hover {
      background-color: #ffffff;
      background-image: url(/assets/icons/blue-plus.svg);
      background-repeat: no-repeat;
      background-position: center center;
      background-size: 14px 14px;
  }
  
  
  
  /* ===== PARTICIPANT SIDEBAR ===== */
  .participant-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(16, 24, 40, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
  }
  .participant-sidebar-overlay.open {
    opacity: 1;
    visibility: visible;
  }
  
  .participant-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 24px rgba(16, 24, 40, 0.1);
  }
  .participant-sidebar.open {
    transform: translateX(0);
  }
  
  .participant-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px 16px;
  }
  .participant-sidebar-title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #363d4d;
  }
  .participant-sidebar-close {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 0.6;
    transition: opacity 0.15s;
  }
  .participant-sidebar-close:hover {
    opacity: 1;
  }
  .participant-sidebar-close img {
    width: 16px;
    height: 16px;
  }
  
  .participant-sidebar-form {
    padding: 8px 28px 28px;
    flex: 1;
    overflow-y: auto;
  }
  .participant-sidebar-form .input-wrap {
    margin-bottom: 14px;
  }
  .participant-sidebar-form .form-input {
    width: 100%;
  }
  
  .participant-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0 28px;
  }
  
  .participant-permission-checkbox.disabled .checkbox-text {
    color: #b9bdc7;
  }
  .participant-permission-checkbox.disabled input[type="checkbox"] {
    cursor: not-allowed;
  }
  
  .participant-submit-btn {
    width: 100%;
    padding: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
  }
  
  .participant-sidebar .select2-container {
      width: 100% !important;
  }
  
  body .participant-sidebar  .select2-container .select2-selection--single {
      border-radius: 8px !important;
  }
  /* Prevent body scroll when sidebar is open */
  body.sidebar-locked {
    overflow: hidden;
  }
  
  /* Mobile */
  @media (max-width: 640px) {
    .participant-sidebar {
      max-width: 100%;
    }
  }
  
  .f3-new-checkboxes .checkbox-wrap.disabled {
      color: #6F6F73;
      cursor: not-allowed;
  }
  .f3-new-checkboxes .checkbox-wrap.disabled input[type="checkbox"] {
      cursor: not-allowed;
      opacity: 0.5;
  }