.counter-card {
  background: #fff;
  padding: 10px 15px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.counter-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.counter-card i {
  font-size: 26px;
  color: #b49441;
  margin-bottom: 10px;
}

.count {
  font-size: 28px;
  font-weight: bold;
  color: #333;
}

.name {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

#leadChart {
  width: 100%;
  height: 100%;
}

#calendar {
  background: #fff;
  padding: 15px;
  border-radius: 3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.location-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  width: 100%;
  max-width: 800px;
  align-items: center;
}

.location-option {
  position: relative;
}

.location-input {
  display: none;
}

.location-box {
  background: #bb9e568c;
  border-radius: 10px;
  border: 2px solid transparent;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.location-box:hover {
  transform: translateY(-3px);
}

.location-icon {
  font-size: 28px;
  color: #63144b;
  margin-bottom: 8px;
}

.location-name {
  font-weight: 600;
  color: #333;
  font-size: 16px;
}

.location-input:checked+.location-box {
  border-color: #63144b;
  box-shadow: 0 0 0 4px rgba(104, 37, 134, 0.2);
}



/* Side pannel To display the call activity  */

.activity-panel {
  position: fixed;
  top: 0;
  right: -400px;
  /* Initially hidden */
  width: 350px;
  height: 100%;
  background-color: #63144B !important;
  color: white;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
  transition: right 0.3s ease;
  z-index: 9999;
  padding: 20px;
  overflow-y: auto;
}

.activity-panel.active {
  right: 0;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.panel-header h3 {
  margin: 0;
  font-size: 20px;
  color: white !important;
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.activity-entry {
  border-left: 4px solid #B49441;
  padding-left: 10px;
  margin-bottom: 15px;
  color: white !important;
}

.activity-entry .time {
  font-weight: bold;
  color: #ffffff !important;
  font-size: 11px;
}

.activity-entry .name {
  font-size: 13px;
  color: white !important;
}

.activity-entry .purpose {
  font-size: 10px;
  color: #ffffff !important;
}

#loading-indicator {
  position: fixed;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 10px;
}

#filter-spinner {
  margin-right: 5px;
}

#limit {
  width: 80px;
  /* Adjust width as needed */
  display: inline-block;
}

#recordsPerPageForm label {
  margin-right: 10px;
}

.counter-card {
  padding: 15px;
  border-radius: 5px;
  background-color: #f8f9fa;
  transition: all 0.3s;
}

.counter-card:hover {
  background-color: #e9ecef;
}

.flex-s-b {
  display: flex;
  justify-content: space-between;
}

.flex-s-e {
  display: flex;
  justify-content: space-between;
}

.app-heading {
  background-color: #007bff;
}

.fs-10 {
  font-size: 10px;
}

.fs-12 {
  font-size: 12px;
}

.recent-call-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 5px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.recent-call-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.recent-call-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.call-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.call-header i {
  color: #dc3545;
  font-size: 16px;
}

.call-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.call-user {
  font-size: 12px;
  font-style: italic;
  color: #666;
}

.call-details {
  font-size: 12px;
  color: #777;
  margin-top: 5px;
}

.call-notes {
  font-size: 12px;
  color: #555;
  margin-top: 5px;
  display: block;
}

@media (max-width: 600px) {
  .recent-call-card {
    padding: 10px;
  }

  .call-title {
    font-size: 14px;
  }

  .call-header i {
    font-size: 14px;
  }

  .call-user,
  .call-details,
  .call-notes {
    font-size: 11px;
  }
}

#bulk-action-panel {
  position: fixed !important;
  bottom: 20px;
  /* space from bottom */
  right: 20px;
  /* space from right */
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1000;
  border-radius: 8px;
  width: auto;
  min-width: 250px;
}

#bulk-action-panel.active {
  display: block;
}

.Bulkactionpop h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.Bulkactionpop button {
  margin-right: 8px;
  margin-bottom: 5px;
}