* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

[v-cloak] {
  display: none !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f5f5f5;
    min-height: 100vh;
    overflow-x: hidden;
}

.mobile-container {
    max-width:480px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.ctm-btn-square {
    padding: 10px 0px;
    background-color: #064FB8;
    font-weight: 600;
    color: white;
    width: 30%;
    border-radius: 40px;
    margin-top: 16px;
    text-align: center;
    cursor: pointer;
}

.ctm-btn {
    padding: 10px 0px;
    background-color: #064FB8;
    font-weight: 600;
    color: white;
    width: 100%;
    border-radius: 40px;
    margin-top: 16px;
    text-align: center;
    cursor: pointer;
    border: none;
}

.ctm-btn-white {
    padding: 10px 0px;
    background-color: #fff;
    font-weight: 600;
    color: rgb(77, 77, 77);
    width: 100%;
    border-radius: 40px;
    margin-top: 16px;
    text-align: center;
    cursor: pointer;
    border: 1px solid grey;
}

/* maskot header */
/* untuk di semua page yang membutuhkan maskot di header */
.img-maskot-hdr {
    position: absolute;
    top: 30px;
    left: 66%;
    z-index: 2;
    height: 123px;
}


/* css modal */
/* Modal backdrop */
.modal-center-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30, 34, 54, 0.32);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Modal box */
.modal-center {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(30,34,54,0.10);
  width: 343px;
  max-width: 95vw;
  padding: 32px 0 0 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn .2s;
}

.modal-center-info {
  width: 311px;
  min-height: 102px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 1;
  margin-bottom: 12px;
}

@keyframes fadeIn { from { opacity: 0; transform: scale(0.98);} to { opacity: 1; transform: scale(1);} }
.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 32px;
  color: #888;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
}

.modal-badge {
  width: 100px;
  min-width: 100px;
  max-width: 100px;
  height: 22px;
  border-width: 1px;
  border-style: solid;
  border-radius: 999px;
  opacity: 1;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 12px;
  padding-right: 12px;
  font-family: var(--font-family-body, 'Segoe UI', Arial, sans-serif);
  font-weight: 500;
  font-size: var(--text-xs, 14px);
  line-height: var(--line-height-xs, 20px);
  letter-spacing: 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin: 0 auto;
}

.swal-custom-popup {
  padding: 20px;
  font-size: 14px;
}

.swal-custom-text {
  font-size: 14px;
  margin: 0;
}

.swal-custom-button {
  font-size: 14px;
  padding: 6px 16px;
  background-color: #064FB8;
  min-width: 70px;
}


.swal-custom-cancel {
  font-size: 14px;
  padding: 6px 18px;
  background-color: #d33;
  min-width: 70px;
}

.swal2-popup {
  max-width: 340px !important;
}


