/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.3.0.1740905027
Updated: 2025-03-02 08:43:47

*/
    body {
      font-family: Arial, sans-serif;
      background-color: #f7fcfc;
      margin: 0;
      padding: 0px;
    }
	@media only screen and (max-width: 959px) {
    #main #content-wrap.container {
        max-width: 100% !important;
        margin: 0;
    }

    body.separate-blog.separate-layout #blog-entries>* {
        margin-bottom: 0;
    }
}

    .card-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    @media (max-width: 1024px) {
      .card-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .card-grid {
        grid-template-columns: 1fr;
      }
    }

    .card {
      display: flex;
      align-items: center;
      background: #fff;
      border-radius: 16px;
      border: 1px solid #a1f3e4; /* stronger border */
      box-shadow: 0 2px 6px rgba(36, 192, 165, 0.15);
      padding: 20px 20px;
      transition: box-shadow 0.25s ease, transform 0.2s ease;
      height: 150px; /* fixed height */
      cursor: pointer;
    }

    .card:hover {
      box-shadow: 0 6px 20px rgba(36, 192, 165, 0.35); /* stronger hover shadow */
      transform: translateY(-3px);
    }

    .icon {
      border-radius: 14px;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 60px;
      height: 60px;
      margin-right: 20px;
      flex-shrink: 0;
    }

    .icon svg {
      width: 30px;
      height: 30px;
      fill: white;
    }

    .content {
      flex: 1;
    }

    .title {
      display: flex;
      align-items: center;
      margin-bottom: 8px;
    }

    .title h3 {
      margin: 0;
      font-size: 14px;
      font-weight: 600;
      color: #333;
    }
	.status {
      margin-left: 10px;
      font-size: 12px;
      font-weight: 600;
      padding: 3px 12px;
      border-radius: 9999px;
    }
	.status.completed {
      background-color: #e3fbec;
      color: #28c66f;
    }
	.status.in-progress {
      background-color: #fff6e6;
      color: #ff9f43;
    }
	.status.not-started {
      background-color: #fdeaea;
      color: #ff4757;
    }
    .description {
      margin: 0;
      font-size: 12px;
      color: #666;
    }