* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: grid;
    grid-template-columns: 1fr 200px;
    grid-template-areas: 
        "nav nav"
        "search search"
        "main aside"
        "chat chat";
    gap: 1rem;
    padding: 1rem;
    background-color:#FAF0E6
}

body > * {
    width: 100%;
}

  .language-select {
    padding-left: 50%;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-left: auto;
}

.search-section {
    grid-area: search;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
}

.activity-prompt, .search-bar {
    padding: 0.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

.activity-prompt {
    width: 300px;
}

.search-bar {
    width: 200px;
}

.activities-container {
    grid-area: main;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.activity-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color:#E9967A
}

.activity-content {
    padding: 1rem;
}

.activity-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.activity-description {
    color: #666;
    margin-bottom: 1rem;
}

.activity-image {
    height: 150px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.suggested-topics {
    grid-area: aside;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem;
}

.suggested-topics h3 {
    margin-bottom: 1rem;
}

.suggested-topics ul {
    list-style-type: none;
}

.suggested-topics li {
    margin-bottom: 0.5rem;
}
/* AI Chat Button */
.chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #F0F8FF;
    color: black;
    padding: 15px 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  }
  .chat-button:hover {
    background-color: #555;
}
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
  }
  
  .chatbot-iframe {
    display: none; /* Hidden by default */
    width: 350px;
    height: 430px;
    border: none;
  }
  