body {
  margin: 0;
  font-family: 'Orbitron', Arial, sans-serif;
  background-color: #1E1B2E;
  color: #F4F4F4;
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #3E2F5B;
  border: 2px solid #50A8FF;
  box-shadow: 0 0 10px #50A8FF;
}

.logo {
  background-color: #7ED4FF;
  padding: 20px;
  text-align: center;
  font-weight: bold;
  border: 2px solid #50A8FF;
  color: #1E1B2E;
  text-shadow: 0 0 4px #ffffff;
  box-shadow: 0 0 10px #50A8FF;
}

.main-content {
  display: flex;
  flex: 1;
}

.sidebar {
  background-color: #FFB3FF;
  padding: 20px;
  width: 200px;
  border: 2px solid #50A8FF;
  display: flex;
  flex-direction: column;
  gap: 1em;
  color: #1E1B2E;
  box-shadow: 0 0 10px #50A8FF;
}

.right-section {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.header {
  background-color: #8DFD9E;
  padding: 20px;
  text-align: center;
  border: 2px solid #50A8FF;
  color: #1E1B2E;
  font-weight: bold;
  text-shadow: 0 0 6px #ffffff;
  box-shadow: 0 0 10px #50A8FF;
}

/* Background image styling for links inside header */
.header a {
  background-image: url('link.png');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 1280px 900px;
  padding-left: 30px;
  color: #1E1B2E;
  text-decoration: none;
  transition: color 0.3s ease;
}

.header a:hover {
  color: #50A8FF;
  text-decoration: underline;
}

.body-area {
  background-color: #2A2140;
  flex: 1;
  padding: 20px;
  text-align: center;
  position: relative;
  border: 2px solid #50A8FF;
  box-shadow: 0 0 10px #50A8FF;
}

.square {
  width: 700px;
  height: 200px;
  background-color: #7ED4FF;
  margin: 20px auto;
  color: #1E1B2E;
  font-size: 15px;
  padding-left: 10px;
  padding-top: 2px;
  display: block;
  text-align: left;
  border: 2px solid #8DFD9E;
  box-shadow: 0 0 10px #8DFD9E;
  border-radius: 8px;
}

.rectangles-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 0;
  margin-top: 20px;
  width: 100%;
  box-sizing: border-box;
  border: 2px solid #50A8FF;
  box-shadow: 0 0 10px #50A8FF;
}

.rectangle2, .rectangle1 {
  background-color: #3E2F5B;
  color: white;
  font-size: 16px;
  padding: 10px;
  text-align: left;
  box-sizing: border-box;
  height: 450px;
  border: 2px solid #50A8FF;
  border-radius: 8px;
  box-shadow: 0 0 10px #50A8FF;
}

.rectangle2 {
  width: 500px;
  box-shadow: 0 0 10px #8DFD9E, 0 0 20px #8DFD9E;
}

.rectangle2 .title_rec2 {
  font-size: 24px;
  font-weight: bold;
  color: #8DFD9E;
  margin-bottom: 15px;
  text-align: center;
  text-shadow: 0 0 8px #8DFD9E;
}

.rectangle2 .paragraph_rec2 {
  font-size: 16px;
  font-style: italic;
  color: #F4F4F4;
}

.rectangle1 {
  width: 200px;
  color: #F4F4F4;
  text-align: center;
  box-shadow: 0 0 10px #FFB3FF;
}

.footer {
  background-color: #3E2F5B;
  padding: 20px;
  text-align: center;
  border: 2px solid #50A8FF;
  color: #F4F4F4;
  box-shadow: 0 0 10px #50A8FF;
}

/* ====== Small GMT+3 Clock Styling ====== */
#small-clock-container {
  background-color: #1E1B2E;
  padding: 8px 12px;
  border-radius: 8px;
  box-shadow: 0 0 10px #7ED4FF;
  margin: 15px 0;
  text-align: center;
  font-family: monospace;
  color: #8DFD9E;
}

.clock-label {
  font-weight: bold;
  margin-bottom: 6px;
  font-size: 1.4em;
  color: #FFB3FF;
  text-shadow: 0 0 6px #ffffff;
}

#small-clock {
  font-size: 20px;
}

#daily-facts-cube {
  width: 90%;
  background-color: #2A2140;
  color: #8DFD9E;
  padding: 12px;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  font-size: 1em;
  box-shadow: 0 0 10px #50A8FF;
  margin: 0;
}

#daily-facts-cube .title {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 8px;
  color: #FFB3FF;
}

#daily-fact {
  line-height: 1.3;
}

#my-status-box {
  width: 90%;
  padding: 12px;
  background: #2A2140;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  margin: 0;
  color: #F4F4F4;
  box-shadow: 0 0 8px #7ED4FF;
}

#my-status-box .status-title {
  font-weight: bold;
  margin-bottom: 8px;
  color: #8DFD9E;
}

#my-status-message {
  min-height: 1.2em;
}

#status-updated-time {
  font-size: 0.85em;
  color: #aaa;
  margin-top: 6px;
}
