body {
	
		margin-top:35px;
      background: #f8f9fa;
      padding: 20px;
    }
    .dashboard-container {
      max-width: 1200px;
      margin: 0 auto 40px auto;
      padding: 30px 30px 40px 30px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    .card-category {
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
	   background: #f8f9fa;
    }
    .card-category:hover {
      transform: scale(1.05);
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
    }
    .tool-icon {
      font-size: 2.5rem;
      color: #0d6efd;
    }
    .modal-body {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
    }
    .tool-card {
      width: 120px;
      cursor: pointer;
      text-align: center;
      padding: 10px;
      border-radius: 8px;
      background: white;
      box-shadow: 0 0 5px rgba(0,0,0,0.1);
      transition: background-color 0.2s;
      text-decoration: none;
      color: inherit;
    }
    .tool-card:hover {
      background-color: #e7f1ff;
      text-decoration: none;
      color: inherit;
    }
    .tool-name {
      margin-top: 8px;
      font-size: 0.9rem;
      color: #333;
    }
    .disabled {
      cursor: not-allowed !important;
      opacity: 0.6;

    }


 /* Dark mode styles */
    body.dark-mode {
      background-color: #121212;
      color: #e0e0e0;
    }
    .dark-mode .tool-card {
      background-color: #1e1e1e;
      border-color: #333;
    }
    .dark-mode .tool-name {
      color: #ffffff;
    }
    .dark-mode .modal-content {
      background-color: #1e1e1e;
      color: #ffffff;
    }
    .dark-mode .btn {
      background-color: #17a2b8;
      color: white;
    }
