
body {
 
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url("DSCF7008[1].JPG") no-repeat center center fixed;
    background-size: cover;
    color: #333;
    transition: background-color 0.5s ease, color 0.5s ease;
  }
.container {
  display: flex;
  height: 100vh;
}
.sidebar {
  width: 250px;
  background-color: #006442;
  color: white;
  display: flex;
  flex-direction: column;
  padding: 20px;
  animation: slideInLeft 0.6s ease-in-out;
}
.logo-section {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.logo {
  width: 40px;
  height: 40px;
  transform: rotate(0);
  transition: transform 0.6s ease-in-out;
}
.logo:hover {
  transform: rotate(360deg);
}
.sidebar h1 {
  font-size: 1.3rem;
  animation: fadeIn 1s ease-in-out;
}
.sidebar nav a {
  color: white;
  text-decoration: none;
  margin-bottom: 12px;
  display: block;
  position: relative;
  transition: all 0.3s ease;
}
.sidebar nav a:hover {
  padding-left: 10px;
  color: #a4f5b6;
  animation: bounce 0.4s ease-in-out;
}
main {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
  animation: fadeSlideIn 0.6s ease-in-out;
}
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: cardFade 0.7s ease-in-out;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 100, 66, 0.3);
}
.clock {
  font-size: 2em;
  margin: 10px 0;
}
button {
  background-color: #006442;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-top: 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 0 0 transparent;
  transition: background-color 0.4s ease, transform 0.2s ease, box-shadow 0.4s ease;
}
button:hover {
  background-color: #004d33;
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(0, 100, 66, 0.6);
}
textarea {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: inherit;
  resize: vertical;
  transition: border 0.3s ease;
}
textarea:focus {
  outline: none;
  border: 1px solid #006442;
}
.log-list {
  margin-top: 15px;
  list-style-type: none;
  padding-left: 0;
}
.log-list li {
  font-family: monospace;
  border-left: 4px solid #006442;
  background-color: #e3f4e3;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 6px;
  animation: fadeIn 0.6s ease-in-out;
}
.light-theme {
  background-color: white;
}
.dark-theme {
  background-color: #1a1a1a;
  color: white;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes cardFade {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes bounce {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(5px); }
  100% { transform: translateX(0); }
}





/* Removed clock pulse animation */
/*@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
  100% { transform: scale(1); opacity: 1; }
}
