@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;
}

.section {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.section .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section .header h2 {
  margin: 0;
}
.section .header .search-input {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  width: 200px;
}

.table-wrapper {
  width: 100%;
  overflow: auto;
}
.table-wrapper .participant-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.table-wrapper .participant-table th,
.table-wrapper .participant-table td {
  min-width: 150px;
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.table-wrapper .participant-table th {
  background-color: #f2f2f2;
}
.table-wrapper .participant-table tr:nth-child(odd) {
  background-color: #f9f9f9;
}
.table-wrapper .participant-table img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

select {
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background-color: #e7e7e7;
  color: #333;
}

.pending {
  background-color: orange;
  color: #fff;
}

.active {
  background-color: green;
  color: #fff;
}

.deactive {
  background-color: red;
  color: #fff;
}

.button {
  padding: 10px 20px;
  background-color: #4caf50;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  text-align: center;
  border: none;
  cursor: pointer;
}

/* 🔁 Mobil Uyğunluq */
@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;
  }
  .section {
    padding: 15px;
  }
  .section .header {
    flex-direction: column;
    align-items: flex-start;
  }
  .section .header .search-input {
    width: 100%;
    margin-top: 10px;
  }
  .button {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    font-size: 16px;
  }
}

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