/* Windows XP-style CSS for Neocities blog */

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background-color: #CFE7F5;
  background-image: url('bliss.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  font-family: Verdana, Tahoma, sans-serif;
  color: black;
  overflow-x: hidden;
}

/* Two-column layout */
.layout {
  display: flex;
  max-width: 1000px;
  margin: 40px auto;
  gap: 20px;
}

/* Sidebar */
.sidebar {
  width: 250px;
  background-color: #f0f0f0;
  border: 2px groove #D4D0C8;
  padding: 15px;
  box-shadow: 4px 4px 0 #808080;
  font-size: 14px;
}

.sidebar h3 {
  margin-top: 0;
  font-size: 16px;
  color: #003399;
}

.sidebar ul {
  list-style-type: square;
  padding-left: 20px;
}

.sidebar li {
  margin-bottom: 8px;
}

/* Blog container */
.blog-container {
  flex: 1;
  background-color: #ffffff;
  border: 2px solid #D4D0C8;
  padding: 20px;
  box-shadow: 4px 4px 0 #808080;
  max-height: 80vh;
  overflow-y: auto;
}

/* Blog entries */
.blog-entry {
  margin-bottom: 40px;
  border-bottom: 1px dashed #999;
  padding-bottom: 20px;
}

.blog-entry h2 {
  margin: 0;
  font-size: 18px;
  color: #003399;
}

.blog-entry p {
  line-height: 1.6;
}

/* Taskbar */
#taskbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background-color: #3A6EA5;
  border-top: 2px solid #ffffff;
  display: flex;
  align-items: center;
  padding: 0 10px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

/* Start Button */
#start-button {
  background-color: #A4C639;
  color: white;
  padding: 5px 12px;
  border: 2px outset #fff;
  font-family: Tahoma, sans-serif;
  font-size: 14px;
  cursor: pointer;
  box-shadow: inset 1px 1px 0 #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}

#start-button:hover {
  background-color: #FF9900;
}

#start-button img {
  width: 16px;
  height: 16px;
}

/* Desktop Icons */
.icon {
  display: inline-block;
  width: 80px;
  text-align: center;
  margin: 10px;
  font-size: 12px;
  color: black;
}

.icon img {
  width: 48px;
  height: 48px;
}

/* Links */
a {
  color: #0000CC;
  text-decoration: underline;
}

a:hover {
  color: #FF0033;
  text-shadow: 0 0 5px #FF0033;
}

/* Glitch Text */
.glitch {
  color: #FF0033;
  text-shadow: 0 0 2px #FF0033, 0 0 5px #000;
  animation: flicker 1s infinite;
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.timestamp {
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
  font-style: italic;
}

/* Input Fields */
input[type="password"],
input[type="text"],
textarea {
  padding: 5px;
  font-family: Tahoma, sans-serif;
  border: 2px inset #D4D0C8;
  background-color: #f9f9f9;
  width: 100%;
  margin-bottom: 10px;
}

/* Buttons */
button {
  padding: 5px 10px;
  font-family: Tahoma, sans-serif;
  background-color: #A4C639;
  border: 2px outset #fff;
  cursor: pointer;
}

button:hover {
  background-color: #FF9900;
}

/* Generic Window Styling */
.window {
  border: 2px solid #D4D0C8;
  background-color: #ffffff;
  box-shadow: 4px 4px 0 #808080;
  font-family: Tahoma, sans-serif;
  padding: 15px;
  max-width: 500px;
  margin: 40px auto;
}

.window-header {
  background: linear-gradient(to right, #3A6EA5, #6CA6CD);
  color: white;
  padding: 5px 10px;
  font-weight: bold;
}

.window-body {
  padding: 10px;
}

/* Access Panel Specific */
#access-panel {
  display: none;
}

/* Music Player Window */
#music-player {
  position: fixed;
  bottom: 60px;
  right: 20px;
  width: 300px;
  z-index: 999;
  border: 2px solid #D4D0C8;
  background-color: #ffffff;
  box-shadow: 4px 4px 0 #808080;
  font-family: Tahoma, sans-serif;
  padding: 15px;
}

/* Guestbook Page Enhancements */
.guestbook-embed {
  background-color: #f9f9f9;
  border: 2px inset #D4D0C8;
  padding: 10px;
  margin-top: 15px;
}

.entry {
  border-bottom: 1px dashed #ccc;
  padding: 8px;
  font-family: Tahoma, sans-serif;
}

.entry .timestamp {
  font-size: 11px;
  color: #666;
}




