* {
  margin: 0px;
  padding: 0px;
}

body {
  font-size: 120%;
  background: #2125290a !important;
}

.a,
u {
  color: unset !important;
  text-decoration: none !important;
}

.modal {
  z-index: 1050;
}

.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.5) !important;
  /* Semi-transparent */
}

.header {
  color: white;
  text-align: center;
  padding: 20px;
  background: #212529;
  border: 3px solid, #212529;
  border-bottom: unset;
  border-radius: 15px;
  border-bottom-right-radius: unset;
  border-bottom-left-radius: unset;
}

.col_login {
  background: #2125290a;
  display: flex;
  justify-content: center;
  border: 3px solid, #212529;
  border-top: unset;
  border-radius: 15px;
  border-top-right-radius: unset;
  border-top-left-radius: unset;
  font-weight: bold;
  color: #212529;
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  display: flex;
  align-items: center;
  background-color: #212529 !important;
  color: white !important;
}

.row_percentage {
  display: flex;
  align-items: flex-end;
}

.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.card_img {
  height: 10rem;
  width: 10rem;
  padding: 5%;
}

.import_file {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
}

.col_dropdown {
  display: flex;
  align-items: flex-start;
}

.head_import {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
}

.table_img {
  width: 30px;
  padding: 1%;
}

.table_img_edit {
  width: 30px;
  padding: 1%;
}

.back_img {
  width: 30px;
  padding: 2px;
  margin: 2px;
}

.row {
  margin-bottom: 1rem;
}

.container {
  padding: 2px 16px;
}

.shortcontainer {
  width: 50% !important;
}

.form {
  width: 30%;
  margin: 0px auto;
  padding: 20px;
  border: 1px solid #B0C4DE;
  background: white;
  border-radius: 0px 0px 10px 10px;
}

.form_drivers {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.navbar {
  width: 100%;
  margin: 0px auto;
  padding: 0.5rem;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}

.pnav {
  margin-bottom: unset;
}

.goback {
  margin-bottom: 1rem;
}

.input-group {
  margin: 10px 10px 10px 10px;
}

.col_form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.input_btn {
  display: flex;
  justify-content: center;
}

.input-group label {
  display: block;
  text-align: left;
  margin: 3px;
}

.input-group input {
  height: 30px;
  width: 93%;
  padding: 5px 10px;
  font-size: 16px;
  border-radius: 5px !important;
  border: 1px solid gray;
}

.btn {
  padding: 10px;
  font-size: 15px;
  color: white;
  border: none;
  border-radius: 5px;
}

.btn:hover {
  background: limegreen;
}

.error {
  margin: 0px auto;
  padding: 10px;
  color: red;
  text-align: center;
}

.success {
  color: #3c763d;
  margin-bottom: 20px;
}

.folder-card {
  transition: transform 0.2s;
  cursor: pointer;
  background: #f8f9fa;
}

.folder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.delete-folder-form {
  position: absolute;
  right: 10px;
  top: 10px;
}

/* Notification Bell Styles */
.nav-link.position-relative {
  padding-right: 1rem;
}

.badge.bg-danger {
  background-color: #dc3545 !important;
  color: white;
  font-weight: bold;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.25rem;
  border: 1px solid #fff;
  font-size: 0.6rem;
}

/* Pulse animation for new notifications */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.has-notifications {
  animation: pulse 1.5s infinite;
}

/* Notification dropdown styles */
.notification-dropdown {
  max-height: 400px;
  overflow-y: auto;
  width: 350px;

}

.notification-dropdown .sticky-top,
.notification-dropdown .sticky-bottom {
  position: sticky;
  z-index: 1;
  background-color: #343a40;
}

.notification-dropdown .sticky-top {
  top: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.notification-dropdown .sticky-bottom {
  bottom: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* Notification items */
.notification-item {
  white-space: normal;
  padding: 0.75rem 1rem;
  transition: opacity 0.3s ease;
}

.notification-divider {
  margin: 0;
}

/* Custom scrollbar */
.notification-dropdown::-webkit-scrollbar {
  width: 8px;
}

.notification-dropdown::-webkit-scrollbar-track {
  background: #343a40;
}

.notification-dropdown::-webkit-scrollbar-thumb {
  background: #495057;
  border-radius: 4px;
}

.notification-dropdown::-webkit-scrollbar-thumb:hover {
  background: #6c757d;
}

/* Notification bell animation */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.has-notifications {
  animation: pulse 1.5s infinite;
}

/* Badge styles */
.badge.bg-danger {
  font-size: 0.6rem;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.25rem;
  border: 1px solid #fff;
}

/* Done button */
.mark-as-done {
  font-size: 0.7rem;
  padding: 0.1rem 0.3rem;
  margin-left: 0.5rem;
}
