
.quarto-sidebar {
    text-align: left; /* Menggeser teks ke kiri */
    padding-left: 0;  /* Menghilangkan padding kiri jika ada */
    margin-left: 0;   /* Menghilangkan margin kiri jika ada */
}

/* Justifikasi teks hanya pada body */
body {
  text-align: justify;
}

img.img-fluid.figure-img {
width: 100%;
}

.header-section-number {
    color: #0063a6;
}

a, b, strong {
  font-size: 16px; /* Adjusts font size */
  line-height: 1.6; /* Controls space between lines */
}

p {
  font-size: 16px; /* Adjusts font size */
  line-height: 1.6; /* Controls space between lines */
  margin-bottom: 15px; /* Adds space after each paragraph */
}


/* Tetap rata kiri untuk judul */
h1, h2, h3, h4, h5, h6 {
  text-align: left;
}

/* Tetap rata kiri untuk sidebar */
.sidebar {
  text-align: left;
}

.enlarge-image {
    transition: transform .2s ease-out;
    cursor: pointer;
}

.enlarge-image:hover {
    transform: scale(1.6);
    display: block;
    background: #eee;
    border: 2px solid #27466C; 
    position: relative;
    float: left;
    z-index: 999;
}
.enlarge-image:hover .inline-figure, .figure {
  margin:  0rem 0rem 0rem 0rem; 
  padding: 0rem 0rem 0rem 0rem;
}


.nocopy {
  -webkit-touch-callout: none;  /* iOS Safari */   
	-webkit-user-select: none;    /* Chrome all / Safari all */
	-khtml-user-select: none;     /* Konqueror */
	-moz-user-select: none;       /* Firefox all */
	-ms-user-select: none;        /* IE 10+ */
	-o-user-select: none;
	user-select: none;            /* Likely future */
}

/* NO SELECT + HIGHLIGHT COLOR */
* {
  user-select: none;
}
*::selection {
  background: none;
}
*::-moz-selection {
  background: none;
}



