body {
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: 'Poppins', sans-serif; /* Use Poppins as the default font */
    height:100vh;
    width: 100vw;
}

body p{
    hyphens: auto;
}

.app-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    background-color: #333;
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Adjusted to space-between */
    padding-right: 20px; /* Adds padding on the right */
}

.header-img:hover {
    cursor: pointer;
}

.header img {
    height: 60%;
    width: auto;
}

.header-div{
    width:33%;
    height: 10vh;
    display: flex;
    justify-content: center;
  align-items: center;
}

.header-div form{
    padding-left: 16vw;
}

.tab-container {
    padding: 4vh 8vw;
    overflow-x: hidden;
    overflow-y: auto;
}

.tab {
    padding: 10px;
    cursor: pointer;
    border: none;
    outline: none;
    background-color: inherit;
    flex: 1;
    color: #333;
    font-weight: bold;
}

.tab:hover,
.tab.current-tab {
    background-color: #ddd;
    cursor: pointer;
}

.tab.active {
    background-color: #71B62C;
    color: #fff;
}

.tab-content {
    display: none;
    padding: 5vh 5vw;
    overflow: hidden;
}

.tab-content h2 {
    margin-top: 0;
}

#gpi{
    position: absolute;
    top: 20vh;
}

.responsive-iframe {
    width: 100%;
    height: 80vh;
    border: none;
}

.btn:hover {
    background-color: #4e8a21; /* A darker shade of the main color */
}

.form-container {
    max-width: 300px; /* Adjust the width as needed */
    margin: auto;
    padding: 20px;
    border: none;
}

.form-container form p {
    margin: 10px 0;
}

.form-container form input[type="text"],
.form-container form input[type="password"],
.form-container form button[type="submit"] {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    display: block;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-container form button[type="submit"] {
    background-color: #71B62C;
    color: white;
    border: none;
    cursor: pointer;
}

.form-container form button[type="submit"]:hover {
    background-color: #60a526;
}

iframe{
    border: none;
}

.agai-button {
    background-color: #71B62C;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.logout-button:hover {
    background-color: #60a526;
}

.app-container {
    height: 100vh; /* Adjust height as per your layout */
}

.input-group {
    margin-top: auto; /* Moves the input group to the bottom */
}

#response {
    max-height: 50vh;
    margin-top: 20px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    height: 150px;
    overflow-y: auto;
}

#id_prompt{
    width: 80vw;
    height: 20vh;
}

.swot-container, .pestel-container {
    margin: 20px;
}

.swot-section, .pestel-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    min-height: 240px;
    margin-bottom: 16px;
}

.swot-section h2, .pestel-card h3 {
    color: #fff;
    margin: 0 0 8px 0;
    padding: 10px;
    border-radius: 5px;
    background-color: #71B62C;
}

.swot-section ul, .pestel-card ul {
    list-style: none;
    padding: 0;
}

.swot-section li, .pestel-card li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.card-header {
    background-color: #71B62C !important;
    color: #fff;
    cursor: pointer;
}

.card-header h2 {
    margin: 0;
}

/* Apply styles to all tables with the 'table' class */
table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd; /* Add a border for the table */
    background-color: #fff; /* Background color for the table */
}

/* Style table header (thead) */
table thead {
    background-color: #333; /* Header background color */
    color: #fff; /* Header text color */
}

/* Style table header cells (th) */
table th {
    padding: 10px;
    text-align: left;
}

/* Style table body cells (td) */
table td {
    padding: 10px;
    border: 1px solid #ddd; /* Add a border to the table cells */
}

/* Alternate row background color for better readability */
table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}
