/* 
 * Main CSS for Chatbot Management Platform
 * Contains core styles used across all pages
 */

/* Base styles */
body {
    padding: 20px 0;
    background-color: #f8f9fa;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
    color: #212529;
}

/* Utility classes */
.hidden {
    display: none !important;
}

/* Form elements */
.form-text {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 5px;
}

/* Card-like containers */
.card-custom {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
}

/* Buttons and actions */
.action-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

/* Alert messages */
.alert-message {
    padding: 12px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Z-index management */
.z-top {
    position: relative;
    z-index: 1000;
}
