@charset "UTF-8";
.error-message {
  color: #f44336;
  font-size: 14px;
  font-weight: 100;
  font-style: italic;
  margin: 1px !important;
}

.success-message {
  color: #4caf50;
  font-size: 14px;
  font-weight: 100;
  font-style: italic;
  margin: 1px !important;
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.time-alert {
  background-color: #ff4d4d !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
  animation: blinkEffect 1s infinite;
}
.time-alert div {
  color: white !important;
  font-weight: bold;
}

@keyframes blinkEffect {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
* {
  margin: 0;
  padding: 0;
  user-select: none;
  box-sizing: border-box;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: #F5F5F5;
  border-radius: 10px;
}

::-webkit-scrollbar {
  width: 10px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #FFF;
  background-image: -webkit-gradient(linear, 40% 0%, 75% 84%, from(#4D9C41), to(#19911D), color-stop(0.6, #54DE5D));
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

.sidebar {
  width: 250px;
  height: 100vh;
  background-color: #e0f2e9;
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  overflow-y: auto;
  transition: all 0.3s ease;
}
.sidebar h2 {
  margin-bottom: 20px;
  font-size: 22px;
}
.sidebar a {
  display: block;
  padding: 10px 15px;
  margin-bottom: 10px;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.2s;
}
.sidebar a:hover {
  background-color: #ccc;
}

.content {
  margin-left: 270px;
  padding: 20px;
  transition: all 0.3s ease;
}

.profile {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.profile img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  margin-right: 20px;
}
.profile div {
  font-size: 18px;
}
.profile div span {
  display: block;
  color: #777;
}

.section {
  background-color: #e0f2e9;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.section h2 {
  margin-top: 0;
  font-size: 20px;
}

.button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #4CAF50;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.button:hover {
  background-color: #45a049;
}

.certificate {
  width: 100%;
  max-width: 400px;
  display: block;
  margin: 10px 0;
}

/* 🔁 Responsive Styles */
@media (max-width: 768px) {
  .sidebar {
    position: relative;
    width: 100%;
    height: auto;
    padding: 15px;
    text-align: center;
  }
  .sidebar h2 {
    font-size: 20px;
  }
  .sidebar a {
    display: inline-block;
    margin: 5px;
    padding: 8px 12px;
  }
  .content {
    margin-left: 0;
    padding: 15px;
  }
  .profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .profile img {
    margin: 0 0 15px 0;
  }
  .profile div {
    font-size: 16px;
  }
  .button {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    font-size: 16px;
  }
  .section {
    padding: 15px;
  }
  .section h2 {
    font-size: 18px;
  }
}

/*# sourceMappingURL=home.css.map */
