body, html {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #1a1f25 0%, #2c3e50 100%);
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
  }
  
  .container {
    display: flex;
    height: 100vh;
  }
  
  .sidebar {
    width: 220px;
    background: #22262e;
    padding: 30px 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.3);
    z-index: 10;
    display: flex;
    flex-direction: column;
  }
  
  .sidebar h2 {
    color: #61dafb;
    margin-bottom: 40px;
    font-size: 24px;
  }
  
  .sidebar ul {
    list-style-type: none;
    padding: 0;
    flex-grow: 1;
  }
  
  .sidebar li {
    margin-bottom: 20px;
  }
  
  .sidebar a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
  }
  
  .sidebar a:hover, .sidebar a.active {
    color: #fff;
    background: #2c3340;
  }
  
  .sidebar a i {
    margin-right: 10px;
    font-size: 20px;
  }
  
  .sidebar-bottom {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
  }
  
  .sidebar-bottom a {
    color: #a0a0a0;
    font-size: 20px;
  }
  .sidebar a.active {
    background: rgba(97, 218, 251, 0.3);
    border-radius: 5px;
    padding: 5px;
    color: #61dafb;
  }
  
  
  .main-content {
    flex-grow: 1;
    padding: 30px;
    overflow-y: auto;
    background: #1e2430;
  }
  
  .dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
  }
  
  .dashboard-card {
    background: rgba(44, 49, 58, 0.8);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  }
  
  .card-title {
    font-size: 16px;
    color: #a0a0a0;
    margin-bottom: 15px;
    font-weight: 500;
  }
  
  .card-value {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #61dafb, #fb61da);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .card-change {
    font-size: 14px;
    color: #4caf50;
    display: flex;
    align-items: center;
  }
  
  .card-change::before {
    content: '↑';
    margin-right: 5px;
  }
  
  .negative-change {
    color: #f44336;
  }
  
  .negative-change::before {
    content: '↓';
  }
  
  .chart-container {
    background: rgba(44, 49, 58, 0.8);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
  }
  
  .automations-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .automations-header h1 {
    font-size: 28px;
    color: #fff;
  }
  
  .new-automation-btn {
    background: #61dafb;
    color: #1a1f25;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .new-automation-btn:hover {
    background: #4fa8d5;
  }
  
  .automation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }
  
  .automation-card {
    background: #2c3340;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .automation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  }
  
  .automation-icon {
    font-size: 36px;
    margin-bottom: 15px;
    color: #61dafb;
  }
  
  .automation-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .automation-description {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 15px;
  }
  
  .automation-actions {
    display: flex;
    justify-content: space-between;
  }
  
  .automation-actions a {
    color: #61dafb;
    text-decoration: none;
  }
  
  .automation-actions a:hover {
    text-decoration: underline;
  }
  
  .status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
  }
  
  .status-active {
    background-color: #4caf50;
  }
  
  .status-inactive {
    background-color: #f44336;
  }
  
  .generate-report-header {
    margin-bottom: 30px;
  }
  
  .generate-report-header h1 {
    font-size: 28px;
    color: #fff;
  }
  
  .report-form {
    background: #2c3340;
    border-radius: 10px;
    padding: 30px;
  }
  
  .form-group {
    margin-bottom: 25px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    color: #61dafb;
  }
  
  .form-group select, .form-group input[type="date"] {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background: #1e2430;
    color: #fff;
    font-size: 16px;
  }
  
  .checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .checkbox-item {
    display: flex;
    align-items: center;
  }
  
  .checkbox-item input[type="checkbox"] {
    margin-right: 10px;
  }
  
  .generate-btn {
    background: #61dafb;
    color: #1a1f25;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .generate-btn:hover {
    background: #4fa8d5;
  }
  
  .client-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .client-header h1 {
    font-size: 28px;
    color: #fff;
  }
  
  .add-client-btn {
    background: #61dafb;
    color: #1a1f25;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .add-client-btn:hover {
    background: #4fa8d5;
  }
  
  .client-search {
    margin-bottom: 30px;
  }
  
  .client-search input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background: #2c3340;
    color: #fff;
    font-size: 16px;
  }
  
  .client-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
  }
  
  .client-table th {
    text-align: left;
    padding: 15px;
    background: #2c3340;
    color: #61dafb;
  }
  
  .client-table td {
    padding: 15px;
    background: #2c3340;
  }
  
  .client-table tr:hover td {
    background: #343d4f;
  }
  
  .client-status {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
  }
  
  .status-active {
    background: #4caf50;
    color: #fff;
  }
  
  .status-inactive {
    background: #f44336;
    color: #fff;
  }
  
  .client-actions a {
    color: #61dafb;
    margin-right: 10px;
    text-decoration: none;
  }
  
  .client-actions a:hover {
    text-decoration: underline;
  }
  
  .reports-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .reports-header h1 {
    font-size: 28px;
    color: #fff;
  }
  
  .generate-report-btn {
    background: #61dafb;
    color: #1a1f25;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .generate-report-btn:hover {
    background: #4fa8d5;
  }
  
  .report-filters {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  
  .filter-group {
    display: flex;
    align-items: center;
  }
  
  .filter-group label {
    margin-right: 10px;
  }
  
  .filter-group select {
    background: #2c3340;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
  }
  
  .report-search input {
    width: 300px;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background: #2c3340;
    color: #fff;
    font-size: 16px;
  }
  
  .report-list {
    background: #2c3340;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .report-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #3a4356;
    transition: background 0.3s ease;
  }
  
  .report-item:hover {
    background: #343d4f;
  }
  
  .report-icon {
    font-size: 24px;
    margin-right: 15px;
    color: #61dafb;
  }
  
  .report-info {
    flex-grow: 1;
  }
  
  .report-title {
    font-size: 18px;
    margin-bottom: 5px;
  }
  
  .report-meta {
    font-size: 14px;
    color: #a0a0a0;
  }
  
  .report-status {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
    margin-right: 15px;
  }
  
  .status-sent {
    background: #4caf50;
    color: #fff;
  }
  
  .status-pending {
    background: #ffd700;
    color: #1a1f25;
  }
  
  .report-actions a {
    color: #61dafb;
    margin-left: 15px;
    text-decoration: none;
  }
  
  .report-actions a:hover {
    text-decoration: underline;
  }
  
  .settings-container {
    background: rgba(44, 49, 58, 0.8);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
    max-width: 600px;
    margin: 0 auto;
  }
  
  .settings-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #61dafb;
  }
  
  .settings-group {
    margin-bottom: 25px;
  }
  
  .settings-group h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #a0a0a0;
  }
  
  .setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .setting-label {
    font-size: 16px;
  }
  
  select, input[type="checkbox"] {
    background: rgba(97, 218, 251, 0.1);
    border: 1px solid #61dafb;
    color: #e0e0e0;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 16px;
  }
  
  select {
    width: 150px;
  }
  
  input[type="checkbox"] {
    width: 20px;
    height: 20px;
  }
  
  button {
    background: linear-gradient(45deg, #61dafb, #fb61da);
    border: none;
    color: #1a1f25;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(97, 218, 251, 0.3);
  }
  
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
    }
    .sidebar {
      width: 100%;
      padding: 20px;
    }
    .settings-container {
      width: 90%;
    }
  }
  
  .profile-container {
    background: rgba(44, 49, 58, 0.8);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
    max-width: 800px;
    margin: 0 auto;
  }
  
  .profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(45deg, #61dafb, #fb61da);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: #1a1f25;
    margin-right: 20px;
  }
  
  .profile-info h2 {
    font-size: 28px;
    margin: 0 0 10px 0;
  }
  
  .profile-info p {
    font-size: 16px;
    color: #a0a0a0;
    margin: 0;
  }
  
  .profile-section {
    margin-bottom: 30px;
  }
  
  .profile-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #61dafb;
  }
  
  .info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .info-item {
    background: rgba(97, 218, 251, 0.1);
    padding: 15px;
    border-radius: 10px;
  }
  
  .info-item label {
    display: block;
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 5px;
  }
  
  .info-item p {
    font-size: 16px;
    margin: 0;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  
  .stat-item {
    background: rgba(97, 218, 251, 0.1);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
  }
  
  .stat-item h4 {
    font-size: 24px;
    margin: 0 0 5px 0;
  }
  
  .stat-item p {
    font-size: 14px;
    color: #a0a0a0;
    margin: 0;
  }
  

  body, html {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: #1a1f25;
    color: #e0e0e0;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
  }
  
  .container {
    display: flex;
    height: 100vh;
  }
  
  
  
  .main-content {
    flex-grow: 1;
    padding: 30px;
    overflow-y: auto;
    background: #1e2430;
  }
  
  .tasks-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
  }
  
  .tasks-header h1 {
    font-size: 28px;
    color: #fff;
  }
  
  .add-task-btn {
    background: #61dafb;
    color: #1a1f25;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .add-task-btn:hover {
    background: #4fa8d5;
  }
  
  .task-filters {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  
  .filter-group {
    display: flex;
    align-items: center;
  }
  
  .filter-group label {
    margin-right: 10px;
  }
  
  .filter-group select {
    background: #2c3340;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
  }
  
  .task-search input {
    width: 300px;
    padding: 10px;
    border-radius: 5px;
    border: none;
    background: #2c3340;
    color: #fff;
    font-size: 16px;
  }
  
  .task-list {
    background: #2c3340;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .task-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #3a4356;
    transition: background 0.3s ease;
  }
  
  .task-item:hover {
    background: #343d4f;
  }
  
  .task-status {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 15px;
  }
  
  .status-pending {
    background: #ffd700;
  }
  
  .status-in-progress {
    background: #1e90ff;
  }
  
  .status-completed {
    background: #32cd32;
  }
  
  .task-info {
    flex-grow: 1;
  }
  
  .task-title {
    font-size: 18px;
    margin-bottom: 5px;
  }
  
  .task-meta {
    font-size: 14px;
    color: #a0a0a0;
  }
  
  .task-actions a {
    color: #61dafb;
    margin-left: 15px;
    text-decoration: none;
  }
  
  .task-actions a:hover {
    text-decoration: underline;
  }
  