/* Primary: Charybdis */
/* Accent: Buzz */
/* Neutral */
.student-dashboard-container {
  padding: 20px 22px;
}

.student-dashboard-container .welcome-section h1 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 8px;
}

.student-dashboard-container .welcome-section p {
  margin-top: 10px;
  color: rgba(32, 32, 32, 0.715);
  font-weight: 600;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.student-dashboard-container .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
  margin-top: 30px;
}

.student-dashboard-container .stats-grid .stat-card {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease;
}

.student-dashboard-container .stats-grid .stat-card:hover {
  transform: translateY(-5px);
}

.student-dashboard-container .stats-grid .stat-card .stat-icon {
  width: 56px;
  height: 56px;
  background-color: rgba(99, 102, 241, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6366f1;
  font-size: 24px;
}

.student-dashboard-container .stats-grid .stat-card:nth-child(2) .stat-icon {
  background-color: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.student-dashboard-container .stats-grid .stat-card:nth-child(3) .stat-icon {
  background-color: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}

.student-dashboard-container .stats-grid .stat-card .stat-info p {
  color: #64748b;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 4px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.student-dashboard-container .stats-grid .stat-card .stat-info h2 {
  font-size: 24px;
  font-weight: 800;
  color: #1e293b;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  margin: 0;
}

.student-dashboard-container .history-section {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  padding: 32px;
}

.student-dashboard-container .history-section .history-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.student-dashboard-container .history-section .history-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: #1e293b;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.student-dashboard-container .history-section .history-header .btn-download-attendance {
  background-color: #4f46e5;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.student-dashboard-container .history-section .history-header .btn-download-attendance:hover {
  background-color: #6366f1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.student-dashboard-container .history-section .history-header .btn-download-attendance:active {
  transform: translateY(0);
}

.student-dashboard-container .history-section .history-header .btn-view-groups {
  background-color: #6366f1;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.student-dashboard-container .history-section .history-header .btn-view-groups:hover {
  background-color: #4f46e5;
  box-shadow: 0 10px 15px -3px rgba(99, 102, 241, 0.3);
}

.student-dashboard-container .history-section .history-table-container {
  overflow-x: auto;
}

.student-dashboard-container .history-section .history-table-container .history-table {
  width: 100%;
  border-collapse: collapse;
}

.student-dashboard-container .history-section .history-table-container .history-table th {
  text-align: left;
  padding: 16px;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 2px solid #f1f5f9;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
}

.student-dashboard-container .history-section .history-table-container .history-table td {
  color: #1e293b;
  font-weight: 700;
  font-size: 20px;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 20px;
  text-align: center;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.student-dashboard-container .history-section .history-table-container .history-table td .view-link {
  color: #6366f1;
  text-decoration: none;
  font-weight: 800;
  transition: color 0.3s ease;
}

.student-dashboard-container .history-section .history-table-container .history-table td .view-link:hover {
  color: #4f46e5;
}

.student-dashboard-container .history-section .history-table-container .history-table tbody .stausPre {
  background-color: #d6f8e1;
  color: #3cda59;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  width: 100px;
  font-size: 18px;
  text-transform: capitalize;
  border-radius: 50px;
  text-align: center;
  margin-bottom: 20px;
}

.student-dashboard-container .history-section .history-table-container .history-table tbody tr {
  margin-top: 40px;
}

.student-dashboard-container .history-section .history-table-container .history-table tbody tr:last-child td {
  padding-bottom: 0;
}

.student-dashboard-container .history-section .tableContent {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  width: 100%;
}

.student-dashboard-container .history-section .tableContent .stausPre {
  background-color: #d6f8e1;
  color: #3cda59;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  width: 100px;
  font-size: 18px;
  text-transform: capitalize;
  border-radius: 50px;
  text-align: center;
  margin-bottom: 20px;
}

.student-dashboard-container .history-section .tabelHeader {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  width: 100%;
}

.student-dashboard-container .table-content {
  width: 100%;
  border-collapse: collapse;
}

.student-dashboard-container .table-content thead tr {
  text-align: left;
  padding: 16px;
  color: #94a3b8;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 2px solid #f1f5f9;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif;
}

.student-dashboard-container .table-content th,
.student-dashboard-container .table-content td {
  padding: 20px;
}

.student-dashboard-container .table-content tbody tr {
  border-bottom: 1px solid rgba(148, 163, 184, 0.2235294118);
}

.student-dashboard-container .table-content tbody tr td {
  color: #1e293b;
  font-weight: 700;
  font-size: 18px;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 20px;
  text-align: center;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.student-dashboard-container .table-content tbody tr td .status {
  text-align: center;
  padding: 5px 2px;
  font-size: 15px;
  border-radius: 50px;
}

.present {
  background-color: #d6f8e1;
  color: #3cda59;
}

.absent {
  background-color: #ffe6e6;
  color: #e74c4c;
}

.today-lesson-container {
  margin: 20px 10px 10px 20px;
}

.today-lesson-container .welcome-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.today-lesson-container .welcome-container .left .headerText {
  text-transform: capitalize;
  font-weight: 700;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 24px;
}

.today-lesson-container .welcome-container .left .subtext {
  color: rgb(154, 154, 154);
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 16px;
  margin-top: 10px;
}

.today-lesson-container .welcome-container .right button {
  background-color: #E74C4C;
  border: none;
  padding: 10px 20px;
  color: white;
  text-transform: capitalize;
  font-weight: 800;
  border-radius: 5px;
  transition: 0.3s;
}

.today-lesson-container .welcome-container .right button:hover {
  cursor: pointer;
  margin-bottom: 6px;
  opacity: 80%;
}

.today-lesson-container .lesson-container {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
}

.today-lesson-container .lesson-container .lesson {
  margin: 20px;
  padding: 20px;
  border-radius: 10px;
  background-color: white;
  flex-grow: 1;
}

.today-lesson-container .lesson-container .lesson .welcome-lesson {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.today-lesson-container .lesson-container .lesson .welcome-lesson img {
  width: 150px;
  height: 90px;
}

.today-lesson-container .lesson-container .lesson .welcome-lesson .state {
  text-transform: capitalize;
  font-weight: 800;
  font-size: 13px;
  background-color: #10b981;
  color: white;
  padding: 5px 13px;
  border-radius: 50px;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.today-lesson-container .lesson-container .lesson .lesson-title {
  margin-top: 20px;
  font-weight: 800;
  font-size: 25px;
  text-transform: capitalize;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.today-lesson-container .lesson-container .lesson .horizontal-line {
  width: 100%;
  background-color: rgba(148, 163, 184, 0.368627451);
  height: 1px;
  margin: 20px 0;
}

.today-lesson-container .lesson-container .lesson .details-section {
  display: flex;
  align-items: center;
}

.today-lesson-container .lesson-container .lesson .details-section .lesson-hall {
  margin-right: 50px;
  text-transform: capitalize;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.today-lesson-container .lesson-container .lesson .details-section .lesson-hall .hallName {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #6366f1;
}

.today-lesson-container .lesson-container .lesson .details-section .lesson-date-time {
  font-family: "Courier New", Courier, monospace;
  font-weight: 800;
}

.today-lesson-container .lesson-container .lesson .details-section .lesson-date-time .lessonVen {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #6366f1;
}

.lesson-active {
  background-color: #d6f8e1;
  color: #3cda59;
}

.lesson-done {
  background-color: #e3e3ff;
  color: #6366f1;
}

.lesson-active {
  background-color: #ffe6e6;
  color: #e74c4c;
}

.btn-group-members {
  background-color: #f1f5f9;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 12px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  color: #6366f1;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
}

.btn-group-members:hover {
  background-color: #6366f1;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.btn-group-members:active {
  transform: translateY(0);
}

.btn-complain {
  background: rgba(231, 76, 76, 0.1);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 12px;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  color: #e74c4c;
  font-weight: 800;
  margin-left: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
}

.btn-complain:hover {
  background-color: #e74c4c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(231, 76, 76, 0.25);
}

.btn-complain:active {
  transform: translateY(0);
}

.update-group .form-group {
  margin-top: 20px;
}

.update-group .form-group label {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  margin-right: 20px;
}

.update-group .form-group input {
  padding: 7px 10px;
  border: 2px solid rgb(188, 188, 188);
  outline: none;
  width: 400px;
  border-radius: 5px;
}

.update-group .form-group input:focus {
  border: 2px solid #4f46e5;
}

.update-group .form-group select {
  margin-top: 10px;
  outline: none;
  border: 2px solid rgb(188, 188, 188);
  padding: 8px 10px;
  border-radius: 5px;
}

.update-group .form-group select option {
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.update-group .form-group select:focus {
  border: 2px solid #4f46e5;
}

.update-group .form-actions button {
  padding: 10px 20px;
  background-color: #4f46e5;
  color: white;
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande", "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
  border: none;
  font-weight: 800;
  border-radius: 10px;
  transition: 0.3s;
}

.update-group .form-actions button:hover {
  cursor: pointer;
  background-color: #6366f1;
}

.course-btn {
  display: flex;
  justify-content: space-between;
}

.course-btn p {
  color: #6366f1;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
}

.course-btn p:hover {
  cursor: pointer;
  text-decoration: underline;
}

body.dark-mode {
  background-color: #0f172a;
  color: #f1f5f9;
}

body.dark-mode .layout-container {
  background-color: #0f172a;
}

body.dark-mode .layout-container .side-bar-container {
  background-color: #1e293b;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.5);
}

body.dark-mode .layout-container .side-bar-container .links-container .link p,
body.dark-mode .layout-container .side-bar-container .links-container .link i {
  color: #cbd5e1;
}

body.dark-mode .layout-container .side-bar-container .link.active,
body.dark-mode .layout-container .side-bar-container .link:hover {
  background-color: #334155;
}

body.dark-mode .layout-container .side-bar-container .logout-des a,
body.dark-mode .layout-container .side-bar-container .dark-mode-toggle {
  color: #cbd5e1 !important;
}

body.dark-mode .layout-container .side-bar-container .logout-des a:hover,
body.dark-mode .layout-container .side-bar-container .dark-mode-toggle:hover {
  color: #f1f5f9 !important;
}

body.dark-mode .layout-container .content-container {
  background-color: #0f172a;
}

body.dark-mode .layout-container .content-container .layout-header-container {
  background-color: #1e293b;
  color: #f1f5f9;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

body.dark-mode .layout-container .content-container .layout-header-container .details p {
  color: #f1f5f9;
}

body.dark-mode .layout-container .content-container .layout-header-container .details .role {
  color: #94a3b8;
}

body.dark-mode .layout-container .content-container .layout-header-container .fa-navicon {
  color: #f1f5f9;
}

body.dark-mode .layout-container .content-container .page-content-container .welcome-section h1 {
  color: #f1f5f9 !important;
}

body.dark-mode .layout-container .content-container .page-content-container .welcome-section p {
  color: #94a3b8 !important;
}

body.dark-mode .layout-container .content-container .page-content-container .stat-card {
  background-color: #1e293b !important;
}

body.dark-mode .layout-container .content-container .page-content-container .stat-card .stat-info h2 {
  color: #f1f5f9 !important;
}

body.dark-mode .layout-container .content-container .page-content-container .history-section,
body.dark-mode .layout-container .content-container .page-content-container .profile-card,
body.dark-mode .layout-container .content-container .page-content-container .lesson,
body.dark-mode .layout-container .content-container .page-content-container .form-container {
  background-color: #1e293b !important;
}

body.dark-mode .layout-container .content-container .page-content-container .history-section h3,
body.dark-mode .layout-container .content-container .page-content-container .history-section h2,
body.dark-mode .layout-container .content-container .page-content-container .history-section label,
body.dark-mode .layout-container .content-container .page-content-container .profile-card h3,
body.dark-mode .layout-container .content-container .page-content-container .profile-card h2,
body.dark-mode .layout-container .content-container .page-content-container .profile-card label,
body.dark-mode .layout-container .content-container .page-content-container .lesson h3,
body.dark-mode .layout-container .content-container .page-content-container .lesson h2,
body.dark-mode .layout-container .content-container .page-content-container .lesson label,
body.dark-mode .layout-container .content-container .page-content-container .form-container h3,
body.dark-mode .layout-container .content-container .page-content-container .form-container h2,
body.dark-mode .layout-container .content-container .page-content-container .form-container label {
  color: #f1f5f9 !important;
}

body.dark-mode .layout-container .content-container .page-content-container .history-section .read-only-field,
body.dark-mode .layout-container .content-container .page-content-container .profile-card .read-only-field,
body.dark-mode .layout-container .content-container .page-content-container .lesson .read-only-field,
body.dark-mode .layout-container .content-container .page-content-container .form-container .read-only-field {
  background-color: #0f172a !important;
  border-color: #334155 !important;
  color: #e2e8f0 !important;
}

body.dark-mode .layout-container .content-container .page-content-container .history-section input,
body.dark-mode .layout-container .content-container .page-content-container .history-section select,
body.dark-mode .layout-container .content-container .page-content-container .history-section textarea,
body.dark-mode .layout-container .content-container .page-content-container .profile-card input,
body.dark-mode .layout-container .content-container .page-content-container .profile-card select,
body.dark-mode .layout-container .content-container .page-content-container .profile-card textarea,
body.dark-mode .layout-container .content-container .page-content-container .lesson input,
body.dark-mode .layout-container .content-container .page-content-container .lesson select,
body.dark-mode .layout-container .content-container .page-content-container .lesson textarea,
body.dark-mode .layout-container .content-container .page-content-container .form-container input,
body.dark-mode .layout-container .content-container .page-content-container .form-container select,
body.dark-mode .layout-container .content-container .page-content-container .form-container textarea {
  background-color: #0f172a !important;
  color: #f1f5f9 !important;
  border-color: #334155 !important;
}

body.dark-mode .layout-container .content-container .page-content-container .history-section .table-content td,
body.dark-mode .layout-container .content-container .page-content-container .profile-card .table-content td,
body.dark-mode .layout-container .content-container .page-content-container .lesson .table-content td,
body.dark-mode .layout-container .content-container .page-content-container .form-container .table-content td {
  color: #e2e8f0 !important;
  border-bottom-color: #334155 !important;
}

body.dark-mode .layout-container .content-container .page-content-container .history-section .table-content th,
body.dark-mode .layout-container .content-container .page-content-container .profile-card .table-content th,
body.dark-mode .layout-container .content-container .page-content-container .lesson .table-content th,
body.dark-mode .layout-container .content-container .page-content-container .form-container .table-content th {
  color: #94a3b8 !important;
  border-bottom-color: #334155 !important;
}

body.dark-mode .layout-container .content-container .page-content-container .history-section .course-item,
body.dark-mode .layout-container .content-container .page-content-container .profile-card .course-item,
body.dark-mode .layout-container .content-container .page-content-container .lesson .course-item,
body.dark-mode .layout-container .content-container .page-content-container .form-container .course-item {
  background-color: #334155 !important;
  border-color: #475569 !important;
  color: #f1f5f9 !important;
}

body.dark-mode .layout-container .content-container .page-content-container .history-section .modal-content,
body.dark-mode .layout-container .content-container .page-content-container .profile-card .modal-content,
body.dark-mode .layout-container .content-container .page-content-container .lesson .modal-content,
body.dark-mode .layout-container .content-container .page-content-container .form-container .modal-content {
  background-color: #1e293b !important;
}

body.dark-mode .layout-container .content-container .page-content-container .history-section .modal-content h2,
body.dark-mode .layout-container .content-container .page-content-container .history-section .modal-content p,
body.dark-mode .layout-container .content-container .page-content-container .history-section .modal-content label,
body.dark-mode .layout-container .content-container .page-content-container .profile-card .modal-content h2,
body.dark-mode .layout-container .content-container .page-content-container .profile-card .modal-content p,
body.dark-mode .layout-container .content-container .page-content-container .profile-card .modal-content label,
body.dark-mode .layout-container .content-container .page-content-container .lesson .modal-content h2,
body.dark-mode .layout-container .content-container .page-content-container .lesson .modal-content p,
body.dark-mode .layout-container .content-container .page-content-container .lesson .modal-content label,
body.dark-mode .layout-container .content-container .page-content-container .form-container .modal-content h2,
body.dark-mode .layout-container .content-container .page-content-container .form-container .modal-content p,
body.dark-mode .layout-container .content-container .page-content-container .form-container .modal-content label {
  color: #f1f5f9 !important;
}

body.dark-mode .layout-container .content-container .page-content-container .history-section .modal-content input,
body.dark-mode .layout-container .content-container .page-content-container .history-section .modal-content select,
body.dark-mode .layout-container .content-container .page-content-container .profile-card .modal-content input,
body.dark-mode .layout-container .content-container .page-content-container .profile-card .modal-content select,
body.dark-mode .layout-container .content-container .page-content-container .lesson .modal-content input,
body.dark-mode .layout-container .content-container .page-content-container .lesson .modal-content select,
body.dark-mode .layout-container .content-container .page-content-container .form-container .modal-content input,
body.dark-mode .layout-container .content-container .page-content-container .form-container .modal-content select {
  background-color: #0f172a !important;
  color: #f1f5f9 !important;
  border-color: #334155 !important;
}

/*# sourceMappingURL=student-sass.css.map */