/* Import Poppins font from Google Fonts */
    @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

    /* Reset default styles */
    * {
      padding: 0;
      margin: 0;
      box-sizing: border-box;
    }

    /* Body styling for centering and background */
    body {
      font-family: 'Poppins', sans-serif;
      background-color: #f5f7fa; /* Light background for contrast */
      min-height: 100vh;
    }


    /* Image styling for responsive fit */
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
	
    .root {
      width: 100%;
      height:100%;
      display: flex;
      justify-content: center;
	  flex-direction:column;
      align-items: center;
    }
	
	/* Header Styles */
		.itinerary-header {
		  text-align: center;
		  padding: 1rem 0;
		  max-width: 800px;
		  margin: 0 auto;
		  display: flex;
		  flex-direction: column;
		  align-items: center;
		}

		.itinerary-header, .tagline {
		  text-align: center;
		}

		.tagline {
		  font-size: 1rem;
		  color: #00afef;
		  text-transform: uppercase;
		  letter-spacing: 1px;
		}

		.itinerary-header h1 {
		  font-size: 2rem;
		  color: #00afef;
		  text-transform: uppercase;
		}



    .travel-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
    }
  
    /* Card container styling */
    .card {
      max-width: 300px;
	  
      border: 2px solid #e0e0e0; /* Light border for definition */
      border-radius: 12px;
      overflow: hidden;
      background-color: #fff; /* Original white background */
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    /* Card hover effect */
    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    /* Card image section */
    .card-img {
      width: 100%;
      height: 200px;
      position: relative;
      overflow: hidden;
    }

    /* Image zoom effect on hover */
    .card-img img {
      transition: transform 0.3s ease;
    }

    .card:hover .card-img img {
      transform: scale(1.05);
    }

    /* Logo styling */
    .card-logo {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2px solid #fff;
      background-color: #fff;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    /* Flexbox utility classes */
    .flex {
      display: flex;
    }

    .col {
      flex-direction: column;
    }

    .items-center {
      align-items: center;
    }

    /* Country details section */
    .country-details {
      padding: 1.2rem;
      gap: 1rem;
      background-color: #fff; /* Original white background */
      border-bottom: 1px solid #e0e0e0;
      color: #333; /* Original dark title color */
    }

    /* Country title styling */
    .details-country {
      font-size: 1.5rem;
      font-weight: 600;
    }

    /* Trip details section */
    .trip-details {
      padding: 1.2rem;
      gap: 0.8rem;
      background-color: #fff; /* Original light gray background */
      color: #555; /* Original font color */
    }

    /* Individual trip detail items */
    .trip-detail {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.95rem;
      padding-left: 0.5rem; /* Align text and icons consistently */
    }

    /* Icon styling */
    .trip-detail i {
      color: #00afef; /* Original blue icon color */
      font-size: 1.1rem;
      width: 20px; /* Fixed width for icon alignment */
      text-align: center; /* Center icons within their space */
      transition: transform 0.2s ease;
    }

    /* Icon hover effect */
    .trip-detail:hover i {
      transform: scale(1.2);
    }

    /* Call-to-action section */
    .cta-section {
      padding: 1.5rem;
      text-align: center;
      background-color: #fff; /* Original white background */
    }

    /* CTA button styling */
    .cta-section a {
      background-color: #fbae17; /* Original blue button color */
	    width: 98%;
	    max-width: 260px;
      padding: 0.5rem 1.5rem;
      border-radius: 8px;
      color: #fff; /* White text for contrast */
      text-decoration: none;
      font-weight: 500;
      display: inline-block;
      transition: background-color 0.3s ease, transform 0.3s ease;
	  
	    margin-top: 20px;
    }

    /* CTA button hover effect */
    .cta-section a:hover {
      background-color: #e29d15; /* Slightly darker blue */
      transform: translateY(-2px);
    }

    /* Responsive adjustments for smaller screens */
    @media (max-width: 400px) {
      .card {
        max-width: 100%;
        margin: 0 1rem;
      }

      .card-img {
        height: 180px;
      }

      .details-country {
        font-size: 1.3rem;
      }
    }

    @media (max-width: 375px) {
      .cta-section a {
        font-size: 0.8rem;
      }
    }
	
	 .exit-dashboard {
  text-align: center;
  margin: 30px 0;
}

.exit-button {
  display: inline-block;
  padding: 12px 24px;
  color: white;
  text-decoration: none;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  background-color: #00afef;
}

.exit-button:hover {
  background-color: #0092c7;
  border-color: #ccc;
}	
	