body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f2f2f2;
}
/* header {
    background: #0b3d91;
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}
.logo {
    width: 80px;
    height: auto;
    position: absolute;
    top: 20px;
    left: 20px;
} */
/* .header-info {
     display: flex;
    justify-content: space-between; /* pisahkan ke kiri & kanan */
    /* align-items: center;
    margin-top: 10px;
    font-size: 18px;
    padding: 0 20px;
} */ 
#clock-location {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#clock {
    font-size: 24px;
}
#location {
    font-size: 16px;
    color: #e0e0e0;
}
#temperature {
    font-size: 18px;
}
.marquee {
    margin-top: 10px;
    font-size: 18px;
    background-color: #062f6f;
    padding: 5px;
    color: white;
}
.main-layout {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    gap: 20px;
}
.left, .center, .right {
    background: white;
    padding: 15px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.left {
    flex: 1;
    min-width: 250px;
}
.center {
    flex: 2;
    min-width: 300px;
}
.right {
    flex: 1;
    min-width: 250px;
}
h2 {
    color: #0b3d91;
}
table {
    width: 100%;
    border-collapse: collapse;
}
table, th, td {
    border: 1px solid #ccc;
}
th, td {
    padding: 8px;
    text-align: left;
}
ul {
    list-style-type: disc;
    padding-left: 20px;
}
.gallery {
    width: 100%;
    margin-top: 40px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}
.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.calendar {
    margin-top: 40px;
}
.calendar-img {
    width: 100%;
    max-width: 800px;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.gallery {
    width: 100%;
    margin-top: 30px;
}
.slider {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.slides {
    display: flex;
    width: 400%;
    animation: slide 12s infinite;
}
.slides img {
    width: 100%;
    flex-shrink: 0;
    object-fit: cover;
}

@keyframes slide {
    0% { transform: translateX(0%); }
    25% { transform: translateX(-100%); }
    50% { transform: translateX(-200%); }
    75% { transform: translateX(-300%); }
    100% { transform: translateX(0%); }
}
.tenaga-kependidikan-marquee {
    height: 120px; /* atur tinggi area scroll */
    overflow: hidden;
    position: relative;
    background: #f9f9f9;
    border: 1px solid #ccc;
    padding: 5px;
    margin-top: 10px;
}

.tenaga-kependidikan-marquee ul {
    display: inline-block;
    animation: scroll-up 90s linear infinite;
    padding: 0;
    margin: 0;
}

.tenaga-kependidikan-marquee li {
    list-style: none;
    padding: 5px 10px;
    font-size: 16px;
}

@keyframes scroll-up {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}
.header-top {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background-color: #0b3d91;
  color: white;
}

.logo {
  width: 70px;
  height: auto;
  flex-shrink: 0;
  margin-right: 20px;
}

.school-title h1 {
  font-size: 24px;
  margin: 0;
}

.school-address {
  font-size: 14px;
  margin: 5px 0 0 0;
  color: #d0dfff;
}
.marquee-container {
  display: flex;
  align-items: center;
  background-color: #062f6f;
  color: white;
  padding: 5px 15px;
  font-size: 16px;
  gap: 20px;
}

.datetime-location-box {
  display: flex;
  flex-direction: column;
  font-weight: bold;
  font-size: 15px;
  white-space: nowrap;
  min-width: 200px;
}
#location {
  font-weight: normal;
  font-size: 13px;
  color: #ccccff;
}
.marquee {
  flex: 1;
}
.header-right {
  font-size: 16px;
  font-weight: bold;
}
.logo-slider-section {
  margin-top: 30px;
  padding: 20px;
  background-color: #f0f4ff;
  text-align: center;
}

.logo-slider-section h2 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #0b3d91;
}

.logo-slider {
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll-logos 20s linear infinite;
  gap: 30px;
  align-items: center;
}

.logo-track img {
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s;
}

.logo-track img:hover {
  transform: scale(1.1);
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.video-rotator-section {
  text-align: center;
  margin: 0px auto;
  padding: 0px;
}

.video-rotator-section h2 {
  font-size: 20px;
  color: #0b3d91;
  margin-bottom: 15px;
}

.video-rotator video {
  /* width: 640=px; */
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

