body {
    background: linear-gradient(135deg, #6b73ff, #000dff);
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Parent container for two-column layout */
.container {
    display: flex;
    gap: 30px;
    max-width: 900px;
    width: 100%;
    align-items: center;
}

/* Left column for image and documentation link */
.info-column {
    flex: 1;
    text-align: center;
    color: white;
    max-width: 350px;
}

h2 {
    color: #fff;
    font-size: 22px;
}

.agentforce-image {
    width: 100%;
    max-width: 280px;
    margin: 10px auto;
    display: block;
}

.info-text {
    font-size: 14px;
    color: #fff;
    text-align: center;
    margin-top: 10px;
}

.info-text a {
    color: #FFD700;
    font-weight: bold;
    text-decoration: none;
}

.info-text a:hover {
    text-decoration: underline;
}

/* Right column for chat component */
.chat-container {
    flex: 1;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 400px;
}

.chat-box {
    height: 400px;
    overflow-y: auto;
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 12px;
    text-align: left;
}

.input-container {
    display: flex;
    gap: 8px;
}

input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

button {
    background: #4A47A3;
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 6px;
}

button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.hidden {
    display: none;
}

/* Mobile responsiveness */
@media (max-width: 800px) {
    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-column {
        max-width: 100%;
    }

    .chat-container {
        width: 90%;
    }
}