/*
	Theme Name: Hello Elementor
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-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.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.4.5
	Stable tag: 3.4.5
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/
.training-container {
        width: 1200px;
        font-family: 'Poppins', sans-serif;
        margin: 0 auto;
      }

      .training-header {
        display: grid;
        grid-template-columns: 1.3fr 1fr 1fr 0.8fr 1fr 1fr;
        background: #77AEE0;
        padding: 14px 24px;
        font-weight: 600;
        color: #fff;
        font-size: 14px;
        border-radius: 10px;
        box-shadow: inset 0 -1px 0 rgba(0,0,0,0.05);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 14px;
      }

      .training-row {
        display: grid;
        grid-template-columns: 1.3fr 1fr 1fr 0.8fr 1fr 1fr;
        align-items: center;
        background: #F5FCFE;
        border-radius: 12px;
        padding: 20px 24px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        margin-bottom: 16px;
        transition: all 0.2s ease-in-out;
      }

      .training-row:hover {
        box-shadow: 0 4px 14px rgba(0,0,0,0.08);
        transform: translateY(-2px);
      }

      .date-cell {
        display: flex;
        align-items: center;
        gap: 14px;
      }

      .date-cell img {
        width: 58px;
        height: auto;
        object-fit: contain;
        flex-shrink: 0;
      }

      .date-text {
        font-size: 18px;
        font-weight: 500;
        color: #111;
      }

      .training-status {
        font-weight: 700;
        display: flex;
        align-items: center;
        font-size: 16px;
        justify-content: flex-start;
      }

      .training-space {
  font-weight: 700;
  border-radius: 9999px;
  padding: 6px 22px;
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.5px;
  background: transparent;
  text-transform: uppercase;
}

/* === Color Variants === */
.training-space.Limited {
  color: #f59e0b; /* amber */
  border: 2px solid #f59e0b;
}

.training-space.Good {
  color: #10b981; /* green */
  border: 2px solid #10b981;
}

.training-space.Low {
  color: #ef4444; /* red */
  border: 2px solid #ef4444;
}


      .price-block strong {
        font-size: 16px;
        color: #111;
      }

      .price-block small {
        display: block;
        font-size: 13px;
        color: #6b7280;
      }

      .book-now {
        background: #1A6CB5;
        color: white;
        padding: 10px 20px;
        border-radius: 8px;
        font-weight: 700;
        text-decoration: none;
        transition: 0.2s ease-in-out;
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .book-now:hover {
        background: #1A6CB5;
        color: #fff;
        transform: translateY(-2px);
      }

      @media (max-width: 768px) {
        .training-container {
          width: 100%;
          padding: 0 12px;
        }

        .training-header {
          display: none;
        }

        .training-row {
          display: flex;
          flex-direction: column;
          row-gap: 10px;
          padding: 16px;
        }

        .book-now {
          width: 100%;
          justify-content: center;
        }
				.date-cell {
          display: flex;
          align-items: center;
          flex-direction: column;
          gap: 14px;
        }
      }