/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* General Progress Bar Styles */
.progress-bar {
  width: 100% !important;
  height: 8px !important;
  background-color: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
  min-height: 8px;
}

.progress-fill {
  height: 100% !important;
  background: white;
  border-radius: 4px;
  transition: width 0.3s ease;
  min-height: 8px;
}

.progress-fill.popup {
  background-color: linear-gradient(90deg, #3b82f6, #1d4ed8);
}

body {
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  color: #1a1a2e;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Login Page Styles */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 2rem;
}

.login-container {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 400px;
  width: 100%;
  animation: fadeInUp 0.6s ease-out;
}

.login-header {
  margin-bottom: 2rem;
}

.login-header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.login-header .logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: 12px;
  margin-right: 0.75rem;
}

.login-header .logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a2e;
}

.login-header h1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.login-header p {
  color: #6b7280;
  font-size: 0.95rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.google-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #4285f4;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.google-login-btn:hover {
  background: #3367d6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

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

.google-login-btn i {
  font-size: 1.2rem;
}

.login-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f4f6;
  border-top: 4px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.login-loading p {
  color: #6b7280;
  font-weight: 500;
}

.login-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  color: #dc2626;
}

.login-error i {
  font-size: 1.5rem;
}

.login-error p {
  font-weight: 500;
  margin: 0;
}

/* Logout Button */
.logout-btn {
  background: none;
  border: none;
  color: #6b7280;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-left: 0.5rem;
}

.logout-btn:hover {
  color: #dc2626;
  background-color: #fef2f2;
}

.download-btn {
  background: none;
  border: none;
  color: #6b7280;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  margin-left: 0.5rem;
}

.download-btn:hover {
  color: #3826dc;
  background-color: #fef2f2;
}

/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background-color: #3b82f6;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 8px;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-left: 0.5rem;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-item {
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

.nav-item:hover {
  color: #3b82f6;
  background-color: #f3f4f6;
}

.nav-item.active {
  color: #ffffff;
  background-color: #3b82f6;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-btn {
  background: none;
  border: none;
  color: #8b8b9a;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  color: #ffffff;
  background-color: #2d2d44;
}

.user-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

/* Main Content */
.main-content {
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Overview Section */
.overview-section {
  display: flex !important;
  flex-direction: column !important;
  gap: 2rem !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* Personal Section */
.personal-section {
  margin: 0;
  padding: 2rem;
}

/* Hidden sections */
.hidden {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* Gross Balance Card */
.gross-balance-card {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 16px;
  padding: 2rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.gross-balance-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.gross-balance-header h2 {
  font-size: 1.2rem;
  font-weight: 500;
  opacity: 0.9;
}

.current-month {
  font-size: 0.9rem;
  opacity: 0.8;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
}

.gross-balance-amount {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.gross-balance-update {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.gross-balance-progress {
  margin-bottom: 1.5rem;
}

.gross-balance-progress .progress-bar {
  width: 100%;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  overflow: hidden;
}

.gross-balance-progress .progress-fill {
  height: 100%;
  background-color: #ffffff;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.current-amount {
  font-weight: 600;
}

.target-amount {
  margin-left: 5px;
  opacity: 0.8;
}

.gross-balance-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  opacity: 0.8;
}

.stat-value {
  font-size: 1.1rem;
  font-weight: 600;
}

.view-gross-btn {
  background-color: #ffffff;
  color: #3b82f6;
  border: none;
  padding: 0.75rem 2rem;
  width: 100%;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-gross-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Meetings Section */
.meetings-section {
  background-color: #ffffff !important;
  border-radius: 16px !important;
  padding: 1.5rem !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  display: block !important;
}

.meetings-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.meetings-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a2e;
}

.section-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.scroll-controls {
  display: flex;
  gap: 0.5rem;
}

.scroll-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #d1d5db;
  background-color: #ffffff;
  color: #6b7280;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.scroll-btn:hover {
  background-color: #f3f4f6;
  color: #374151;
  border-color: #9ca3af;
}

.scroll-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.add-meeting-btn,
.add-project-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #3b82f6;
  background-color: #3b82f6;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.add-meeting-btn:hover,
.add-project-btn:hover {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
}

.see-all-link {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.see-all-link:hover {
  color: #3b82f6;
}

.meetings-container {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  width: 100%;
}

.meetings-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.meeting-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  min-width: 280px;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.meeting-date {
  background-color: #f3f4f6;
  color: #6b7280;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1rem;
}

.meeting-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.meeting-note {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.meeting-details {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.meeting-type {
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
}

.meeting-type.ordinary {
  background-color: #dcfce7;
  color: #166534;
}

.meeting-type.urgent {
  background-color: #fef3c7;
  color: #92400e;
}

.meeting-id {
  color: #6b7280;
  font-size: 0.8rem;
}

.meeting-participants {
  display: flex;
  gap: 0.5rem;
}

.participant-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #e5e7eb;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.participant-avatar.special {
  background-color: #3b82f6;
  color: #ffffff;
}

.participant-more {
  background-color: #f3f4f6;
  color: #6b7280;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
}

/* Projects Section */
.projects-section {
  background-color: #ffffff !important;
  border-radius: 16px !important;
  padding: 1.5rem !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  display: block !important;
}

/* Tasks Section */
.tasks-section {
  background-color: #ffffff !important;
  border-radius: 16px !important;
  padding: 1.5rem !important;
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  display: block !important;
}

.tasks-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.tasks-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a2e;
}

.tasks-container {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  width: 100%;
}

.tasks-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.task-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  min-width: 280px;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.task-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.task-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.task-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a2e;
  flex: 1;
}

.task-priority {
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-left: 1rem;
}

.task-priority.low {
  background-color: #dcfce7;
  color: #166534;
}

.task-priority.medium {
  background-color: #fef3c7;
  color: #92400e;
}

.task-priority.high {
  background-color: #fecaca;
  color: #991b1b;
}

.task-priority.urgent {
  background-color: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.task-description {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.task-project {
  background-color: #f3f4f6;
  color: #6b7280;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1rem;
}

.task-status {
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
  display: inline-block;
}

.task-status.pending {
  background-color: #fef3c7;
  color: #92400e;
}

.task-status.in-progress {
  background-color: #dbeafe;
  color: #1d4ed8;
}

.task-status.completed {
  background-color: #dcfce7;
  color: #166534;
}

.task-status.cancelled {
  background-color: #f3f4f6;
  color: #6b7280;
}

.task-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.task-due-date {
  color: #6b7280;
  font-size: 0.8rem;
  font-weight: 500;
}

.task-assignee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.assignee-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #e5e7eb;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.8rem;
  border: 2px solid #ffffff;
}

.assignee-name {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 500;
}

.add-task-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #3b82f6;
  background-color: #3b82f6;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.add-task-btn:hover {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.projects-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a2e;
}

.projects-container {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  width: 100%;
}

.projects-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.project-card {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  min-width: 300px;
  flex-shrink: 0;
}

.project-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.project-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a2e;
  flex: 1;
}

.project-status {
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-left: 1rem;
}

.project-status.in-progress {
  background-color: #dbeafe;
  color: #1d4ed8;
}

.project-status.planning {
  background-color: #fef3c7;
  color: #92400e;
}

.project-status.completed {
  background-color: #dcfce7;
  color: #166534;
}

.project-description {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.project-progress {
  margin-bottom: 1rem;
}

.project-progress .progress-bar {
  width: 100%;
  height: 8px;
  background-color: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.project-progress .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.project-progress .progress-text {
  color: #6b7280;
  font-size: 0.8rem;
  font-weight: 500;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-deadline {
  color: #6b7280;
  font-size: 0.8rem;
  font-weight: 500;
}

.project-team {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.team-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #e5e7eb;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.8rem;
  border: 2px solid #ffffff;
}

.team-more {
  background-color: #f3f4f6;
  color: #6b7280;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 500;
}

/* Personal Section */
.personal-section {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.personal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.personal-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a2e;
}

.add-user-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #3b82f6;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.add-user-btn:hover {
  background-color: #1d4ed8;
  transform: scale(1.05);
}

.users-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.user-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e5e7eb;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
}

.user-avatar.special {
  background-color: #3b82f6;
  color: #ffffff;
}

.user-email {
  flex: 1;
  font-weight: 500;
  color: #1a1a2e;
}

.role-dropdown {
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background-color: #ffffff;
  color: #1a1a2e;
  font-weight: 500;
  cursor: pointer;
}

.user-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.user-action-btn {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 0.875rem;
}

.delete-user-btn {
  background-color: #ef4444;
  color: #ffffff;
}

.delete-user-btn:hover {
  background-color: #dc2626;
  transform: scale(1.05);
}

/* Add User Modal */
.add-user-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal-content {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a2e;
}

.close-modal {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6b7280;
  cursor: pointer;
  padding: 0.25rem;
}

.close-modal:hover {
  color: #1a1a2e;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #1a1a2e;
}

.email-input,
.role-select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  color: #1a1a2e;
}

.email-input:focus,
.role-select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.create-user-btn {
  width: 100%;
  background-color: #1a1a2e;
  color: #ffffff;
  border: none;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.create-user-btn:hover {
  background-color: #374151;
}

/* Gross Modal */
.gross-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.gross-modal-content {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.close-gross-modal {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6b7280;
  cursor: pointer;
  padding: 0.25rem;
}

.close-gross-modal:hover {
  color: #1a1a2e;
}

.profit-chart {
  margin-bottom: 2rem;
}

.balance-chart h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.balance-chart .chart-container {
  background-color: #f9fafb;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.balance-chart .chart-bars {
  display: flex;
  align-items: end;
  gap: 0.5rem;
  height: 150px;
  margin-bottom: 1rem;
}

.balance-chart .chart-bar {
  flex: 1;
  background: linear-gradient(180deg, #3b82f6, #1d4ed8);
  border-radius: 4px 4px 0 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.balance-chart .chart-bar.current-month {
  background: linear-gradient(180deg, #e0c946, #e2c72a);
}

.balance-chart .chart-bar:hover {
  opacity: 0.8;
}

.balance-chart .chart-labels {
  display: flex;
  justify-content: space-between;
}

.balance-chart .chart-labels span {
  flex: 1;
  text-align: center;
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}

.chart-legend {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

.legend-color.balance {
  background-color: #3b82f6;
}

.legend-color.target {
  background-color: #10b981;
}

.monthly-data {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.month-card {
  background-color: #f9fafb;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
}


.month-card.total {
  background: linear-gradient(135deg, #3b9cf6, #0b4e75);
  color: #ffffff;
  border: none;
  align-items: center;
  margin-bottom: 1.1rem;
  padding: 2rem;
}

.total-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  width: 100%;
}

.total-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1.5rem;
}

.total-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.total-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.total-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1;
}

.total-period {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.total-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.total-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 100px;
}

.total-stats .stat-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.total-stats .stat-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.month-header {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.month-amount {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.month-amount.data {
  font-size: 1rem;
  font-weight: 400;
  color: #e7e4e4;
}

.month-update {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1rem;
}

.month-progress .progress-bar {
  width: 100%;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  overflow: hidden;
}

.month-progress .progress-bar.popup {
  background-color: rgba(197, 189, 189, 0.3);
}

.month-progress .progress-fill {
  height: 100%;
  background-color: #1d4ed8;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.progress-info {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #cfcfcf;
  font-weight: 500;
}

.month-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.month-stats .stat {
  font-size: 0.8rem;
  color: #6b7280;
  font-weight: 500;
}


/* Responsive Design */
@media (max-width: 768px) {
  .login-page {
    padding: 1rem;
  }

  .login-container {
    padding: 2rem;
    max-width: 350px;
  }

  .login-header .logo-text {
    font-size: 1.5rem;
  }

  .login-header h1 {
    font-size: 1.3rem;
  }

  .google-login-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .navbar {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }

  .nav-left,
  .nav-right {
    width: 100%;
    justify-content: space-between;
  }

  .nav-menu {
    gap: 1rem;
  }

  .main-content {
    padding: 1rem;
  }

  .gross-balance-amount {
    font-size: 2rem;
  }

  .meetings-container {
    flex-direction: column;
  }

  .meeting-card {
    min-width: auto;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .monthly-data {
    gap: 0.5rem;
  }

  .month-amount {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .login-container {
    padding: 1.5rem;
    max-width: 320px;
  }

  .login-header .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .login-header .logo-text {
    font-size: 1.3rem;
  }

  .login-header h1 {
    font-size: 1.2rem;
  }

  .google-login-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .gross-balance-amount {
    font-size: 1.5rem;
  }

  .month-amount {
    font-size: 1.2rem;
  }

  .gross-modal-content {
    width: 95%;
    padding: 1rem;
  }

  .total-card {
    padding: 1.5rem;
  }

  .total-amount {
    font-size: 2.5rem;
  }

  .total-stats {
    gap: 1rem;
  }

  .total-stats .stat-item {
    padding: 0.75rem 1rem;
    min-width: 80px;
  }

  .total-stats .stat-value {
    font-size: 1rem;
  }

  .empty-state {
    padding: 2rem 1rem;
  }

  .empty-state-icon {
    font-size: 2.5rem;
  }

  .empty-state h3 {
    font-size: 1.1rem;
  }

  .empty-state p {
    font-size: 0.85rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gross-balance-card,
.meetings-section,
.projects-section,
.personal-section {
  animation: fadeInUp 0.6s ease-out;
}

/* User Interface Styling */
.user-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.user-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.user-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.user-avatar.special {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.user-avatar .user-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.user-info {
  flex: 1;
  min-width: 0;
}

.user-name {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.user-email {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
  word-break: break-all;
}

.user-access-level {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 500;
}

.user-role {
  flex-shrink: 0;
}

.role-dropdown {
  padding: 0.5rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: white;
  color: #374151;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.role-dropdown:hover {
  border-color: #9ca3af;
}

.role-dropdown:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Empty State Styling */
.empty-state {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 3rem 2rem !important;
  text-align: center !important;
  background-color: #f9fafb !important;
  border: 2px dashed #d1d5db !important;
  border-radius: 12px !important;
  margin: 1rem 0 !important;
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
  width: 100% !important;
  min-height: 200px !important;
  box-sizing: border-box !important;
}

.empty-state-icon {
  font-size: 3rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}

.empty-state h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.empty-state p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.5;
  max-width: 300px;
}

/* Projects empty state specific */
.projects-empty {
  grid-column: 1 / -1 !important;
  min-height: 200px !important;
  width: 100% !important;
  margin: 1rem 0 !important;
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Meetings empty state specific */
.meetings-empty {
  width: 100% !important;
  margin: 1rem 0 !important;
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
  min-height: 200px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Tasks empty state specific */
.tasks-empty {
  width: 100% !important;
  margin: 1rem 0 !important;
}

/* Support Section */
.support-section {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.support-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.support-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a2e;
}

.support-stats {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.support-stats .stat-item {
  font-size: 0.875rem;
  color: #6b7280;
  background-color: #f3f4f6;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 500;
}

.contact-form-details {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.contact-form-details .detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.contact-form-details .detail-row:last-child {
  border-bottom: none;
}

.contact-form-details .detail-label {
  font-weight: 600;
  color: #374151;
  min-width: 100px;
}

.contact-form-details .detail-value {
  color: #6b7280;
  flex: 1;
  text-align: right;
}

.add-support-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #3b82f6;
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.add-support-btn:hover {
  background-color: #1d4ed8;
  transform: scale(1.05);
}

.support-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.filter-select {
  padding: 0.5rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background-color: #ffffff;
  color: #374151;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 120px;
}

.filter-select:hover {
  border-color: #9ca3af;
}

.filter-select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.support-notifications-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.support-notification-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background-color: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.2s ease;
}

.support-notification-item:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.support-notification-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.support-notification-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0;
  flex: 1;
}

.support-notification-meta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.support-notification-priority {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.support-notification-priority.low {
  background-color: #d1fae5;
  color: #065f46;
}

.support-notification-priority.medium {
  background-color: #fef3c7;
  color: #92400e;
}

.support-notification-priority.high {
  background-color: #fed7aa;
  color: #9a3412;
}

.support-notification-priority.urgent {
  background-color: #fecaca;
  color: #991b1b;
}

.support-notification-status {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.support-notification-status.waiting {
  background-color: #dbeafe;
  color: #1e40af;
}

.support-notification-status.in-progress {
  background-color: #fef3c7;
  color: #92400e;
}

.support-notification-status.resolved {
  background-color: #d1fae5;
  color: #065f46;
}

.support-notification-status.closed {
  background-color: #f3f4f6;
  color: #374151;
}

.support-notification-category {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: #e5e7eb;
  color: #374151;
}

.support-notification-content {
  margin: 1rem 0;
}

.support-notification-sender {
  font-size: 0.875rem;
  color: #374151;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  background-color: #f3f4f6;
  border-radius: 8px;
}

.support-notification-description {
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 1rem 0;
  white-space: pre-wrap;
}

.support-notification-messages {
  margin-top: 1rem;
  padding: 1rem;
  background-color: #f9fafb;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.messages-list {
  margin-top: 0.5rem;
}

.message-item {
  padding: 0.5rem;
  margin: 0.25rem 0;
  background-color: #ffffff;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}

.message-text {
  font-size: 0.875rem;
  color: #374151;
  line-height: 1.5;
}

.support-notification-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.support-notification-info {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.875rem;
  color: #6b7280;
}

.support-notification-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.support-action-btn {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-size: 0.875rem;
}

.edit-support-btn {
  background-color: #3b82f6;
  color: #ffffff;
}

.edit-support-btn:hover {
  background-color: #1d4ed8;
  transform: scale(1.05);
}

.delete-support-btn {
  background-color: #ef4444;
  color: #ffffff;
}

.delete-support-btn:hover {
  background-color: #dc2626;
  transform: scale(1.05);
}

.assign-support-btn {
  background-color: #10b981;
  color: #ffffff;
}

.assign-support-btn:hover {
  background-color: #059669;
  transform: scale(1.05);
}

/* Support empty state */
.support-empty {
  width: 100% !important;
  margin: 1rem 0 !important;
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
  min-height: 200px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Pricing Form Section Styles */
.pricing-section {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.pricing-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a2e;
}

.pricing-stats {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.pricing-stats .stat-item {
  font-size: 0.875rem;
  color: #6b7280;
  background-color: #f3f4f6;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 500;
}

.pricing-form-details {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.pricing-form-details .detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.pricing-form-details .detail-row:last-child {
  border-bottom: none;
}

.pricing-form-details .detail-label {
  font-weight: 600;
  color: #374151;
  min-width: 100px;
}

.pricing-form-details .detail-value {
  color: #6b7280;
  flex: 1;
  text-align: right;
}

.pricing-filters {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.pricing-notifications-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-notification-item {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.pricing-notification-item:hover {
  border-color: #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.pricing-notification-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.pricing-notification-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0;
  flex: 1;
}

.pricing-notification-meta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.pricing-notification-priority {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-notification-priority.low {
  background-color: #d1fae5;
  color: #065f46;
}

.pricing-notification-priority.medium {
  background-color: #fef3c7;
  color: #92400e;
}

.pricing-notification-priority.high {
  background-color: #fed7d7;
  color: #991b1b;
}

.pricing-notification-priority.urgent {
  background-color: #fecaca;
  color: #7f1d1d;
}

.pricing-notification-status {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-notification-status.waiting {
  background-color: #f3f4f6;
  color: #374151;
}

.pricing-notification-status.in-progress {
  background-color: #dbeafe;
  color: #1e40af;
}

.pricing-notification-status.resolved {
  background-color: #d1fae5;
  color: #065f46;
}

.pricing-notification-status.closed {
  background-color: #f3f4f6;
  color: #6b7280;
}

.pricing-notification-category {
  background-color: #e0e7ff;
  color: #3730a3;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.form-type-badge {
  background-color: #f3f4f6;
  color: #374151;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-left: 0.5rem;
}

.form-type-badge.contactForm {
  background-color: #dbeafe;
  color: #1e40af;
}

.form-type-badge.pricingForm {
  background-color: #dcfce7;
  color: #166534;
}

.pricing-notification-content {
  margin-bottom: 1rem;
}

.pricing-notification-sender {
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-notification-description {
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.pricing-notification-messages {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
}

.pricing-notification-messages h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin: 0 0 0.5rem 0;
}

.pricing-notification-messages .message-item {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.875rem;
  color: #6b7280;
}

.pricing-notification-messages .message-item:last-child {
  border-bottom: none;
}

.pricing-notification-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.pricing-notification-info {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.875rem;
  color: #6b7280;
}

.pricing-notification-actions {
  display: flex;
  gap: 0.5rem;
}

.pricing-action-btn {
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  background-color: #ffffff;
  color: #374151;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pricing-action-btn:hover {
  background-color: #f9fafb;
  border-color: #9ca3af;
}

.pricing-action-btn.primary {
  background-color: #3b82f6;
  color: #ffffff;
  border-color: #3b82f6;
}

.pricing-action-btn.primary:hover {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
}

.pricing-action-btn.danger {
  background-color: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
}

.pricing-action-btn.danger:hover {
  background-color: #dc2626;
  border-color: #dc2626;
}

/* Pricing empty state */
.pricing-empty {
  width: 100% !important;
  margin: 1rem 0 !important;
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
  min-height: 200px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a2e;
}

.close-modal {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6b7280;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.close-modal:hover {
  background-color: #f3f4f6;
  color: #374151;
}

.modal-body {
  margin-bottom: 1.5rem;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.participants-container {
  margin-bottom: 1rem;
}

.participant-input-group {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.5rem;
  align-items: end;
  margin-bottom: 0.5rem;
}

.participant-name,
.participant-email {
  padding: 0.5rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.9rem;
}

.remove-participant {
  padding: 0.5rem 0.75rem;
  background-color: #ef4444;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.remove-participant:hover {
  background-color: #dc2626;
}

.add-participant {
  background-color: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.add-participant:hover {
  background-color: #e5e7eb;
  border-color: #9ca3af;
}

/* Button Styles */
.btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary {
  background-color: #3b82f6;
  color: white;
}

.btn-primary:hover {
  background-color: #1d4ed8;
}

.btn-secondary {
  background-color: #6b7280;
  color: white;
}

.btn-secondary:hover {
  background-color: #4b5563;
}

.btn-danger {
  background-color: #ef4444;
  color: white;
}

.btn-danger:hover {
  background-color: #dc2626;
}

.btn-outline {
  background-color: transparent;
  color: #3b82f6;
  border: 1px solid #3b82f6;
}

.btn-outline:hover {
  background-color: #3b82f6;
  color: white;
}

/* Meeting Card Actions */
.meeting-card {
  position: relative;
}

.meeting-actions {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: flex;
  gap: 0.25rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.meeting-card:hover .meeting-actions {
  opacity: 1;
}

.meeting-action-btn {
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.edit-meeting-btn {
  background-color: #3b82f6;
  color: white;
}

.edit-meeting-btn:hover {
  background-color: #1d4ed8;
}

.delete-meeting-btn {
  background-color: #ef4444;
  color: white;
}

.delete-meeting-btn:hover {
  background-color: #dc2626;
}

/* Project Card Actions */
.project-card {
  position: relative;
}

.project-actions {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: flex;
  gap: 0.25rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.project-card:hover .project-actions {
  opacity: 1;
}

.project-action-btn {
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.edit-project-btn {
  background-color: #3b82f6;
  color: white;
}

.edit-project-btn:hover {
  background-color: #1d4ed8;
}

.delete-project-btn {
  background-color: #ef4444;
  color: white;
}

.delete-project-btn:hover {
  background-color: #dc2626;
}

/* Task Card Actions */
.task-card {
  position: relative;
}

.task-actions {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  display: flex;
  gap: 0.25rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.task-card:hover .task-actions {
  opacity: 1;
}

.task-action-btn {
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.edit-task-btn {
  background-color: #3b82f6;
  color: white;
}

.edit-task-btn:hover {
  background-color: #1d4ed8;
}

.delete-task-btn {
  background-color: #ef4444;
  color: white;
}

.delete-task-btn:hover {
  background-color: #dc2626;
}

.complete-task-btn {
  background-color: #10b981;
  color: white;
}

.complete-task-btn:hover {
  background-color: #059669;
}

/* Team Container Styles */
.team-container {
  margin-bottom: 1rem;
}

.team-input-group {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0.5rem;
  align-items: end;
  margin-bottom: 0.5rem;
}

.team-name,
.team-email {
  padding: 0.5rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.9rem;
}

.remove-team {
  padding: 0.5rem 0.75rem;
  background-color: #ef4444;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.remove-team:hover {
  background-color: #dc2626;
}

.add-team {
  background-color: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.add-team:hover {
  background-color: #e5e7eb;
  border-color: #9ca3af;
}

/* Notification Panel Styles */
.notification-dropdown {
  position: relative;
}

.notification-btn {
  position: relative;
  background: none;
  border: none;
  color: #8b8b9a;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.notification-btn:hover {
  color: #ffffff;
  background-color: #2d2d44;
}

.notification-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: #ef4444;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
}

.notification-panel {
  position: absolute;
  top: 100%;
  right: 0;
  width: 350px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  max-height: 400px;
  overflow: hidden;
  margin-top: 0.5rem;
}

.notification-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
  background-color: #f9fafb;
}

.notification-header h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
}

.mark-all-read-btn {
  background: none;
  border: none;
  color: #3b82f6;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.mark-all-read-btn:hover {
  background-color: #f3f4f6;
}

.notification-list {
  max-height: 300px;
  overflow-y: auto;
}

.notification-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.2s ease;
  cursor: pointer;
}

.notification-item:hover {
  background-color: #f9fafb;
}

.notification-item.unread {
  background-color: #f0f9ff;
  border-left: 3px solid #3b82f6;
}

.notification-item.read {
  opacity: 0.7;
}

.notification-content {
  flex: 1;
  min-width: 0;
}

.notification-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.notification-message {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.notification-time {
  font-size: 0.7rem;
  color: #9ca3af;
  font-weight: 500;
}

.notification-actions {
  flex-shrink: 0;
}

.mark-read-btn {
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  background-color: #f3f4f6;
  color: #6b7280;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.mark-read-btn:hover {
  background-color: #e5e7eb;
  color: #374151;
}

.notification-item.unread .mark-read-btn {
  background-color: #dbeafe;
  color: #3b82f6;
}

.notification-item.unread .mark-read-btn:hover {
  background-color: #bfdbfe;
}

/* Empty notification state */
.notification-empty {
  padding: 2rem;
  text-align: center;
  color: #6b7280;
}

.notification-empty i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}

.notification-empty p {
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive Modal */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .participant-input-group {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .notification-panel {
    width: 300px;
    right: -50px;
  }
}

/* Order Details Modal Styles */
.order-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000; /* Higher than gross modal */
}

.order-modal-content {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  width: 90%;
  max-width: 800px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.order-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.order-modal .modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a2e;
}

.close-order-modal {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6b7280;
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.3s ease;
}

.close-order-modal:hover {
  color: #1a1a2e;
}

.order-modal .modal-body {
  margin-bottom: 1.5rem;
}

.order-summary {
  background-color: #f9fafb;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.order-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.order-info span {
  background: white;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

.order-month {
  color: #1a1a2e;
  font-weight: 600;
}

.order-total {
  color: #1a1a2e;
  font-weight: 600;
}

.order-count {
  color: #1a1a2e;
  font-weight: 500;
}

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.order-item {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.order-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.order-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.order-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #374151;
}

.order-product-id {
  font-family: 'Inter', monospace;
  background: #f3f4f6;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #374151;
  font-weight: 500;
}

.order-transaction-id {
  font-family: 'Inter', monospace;
  background: #f3f4f6;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #374151;
  font-weight: 500;
}

.order-app-id {
  font-family: 'Inter', monospace;
  background: #eff6ff;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #1d4ed8;
  word-break: break-all;
  font-weight: 500;
}

.order-number {
  background: #3b82f6;
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.order-img {
  outline: 1px solid #e5e7eb;
  border-radius: 6px;
  object-fit: cover;
  font-size: 0.85rem;
  font-weight: 600;
  width: 40px;
  height: 40px;
}

.order-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.order-date {
  background: #f3f4f6;
  color: #374151;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.no-orders {
  text-align: center;
  color: #6b7280;
  font-style: italic;
  padding: 3rem 2rem;
  background: #f9fafb;
  border-radius: 12px;
  border: 2px dashed #d1d5db;
  font-size: 1.1rem;
}

.view-orders-btn {
  background: #3b82f6;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.view-orders-btn:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.month-card:hover .view-orders-btn {
  background: #2563eb;
}

/* Responsive design for order modal */
@media (max-width: 768px) {
  .order-modal-content {
    width: 95%;
    padding: 1.5rem;
    max-height: 90vh;
  }
  
  .order-info {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  
  .order-info span {
    text-align: center;
    padding: 0.5rem 1rem;
  }
  
  .order-item-header {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  
  .order-item {
    padding: 1rem;
  }
  
  .view-orders-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}