/* Custom styles for AI Agent Platform */

/* Add extra padding for the body to accommodate the footer */
body {
    padding-bottom: 60px;
    min-height: 100vh;
    position: relative;
}

/* Fix footer at the bottom */
footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* Card styling */
.card {
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-header {
    border-radius: 0.5rem 0.5rem 0 0 !important;
}

/* Form control focus styling */
.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Response content styling */
#responseContent {
    white-space: pre-wrap;
    font-family: monospace;
    background: #f8f9fa;
    border-radius: 0.25rem;
    padding: 1rem;
}

/* API documentation styling */
pre {
    background-color: #f8f9fa;
    border-radius: 0.25rem;
}

/* Limit text overflow in agent listing */
.text-truncate {
    max-width: 100%;
}