/*
 * Styles for the Client Portal Tickets plugin
 */
.cpt-container {
    max-width: 100%;
    margin: 20px 0;
}

.cpt-search-field {
    width: 100%;
    max-width: 400px;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.cpt-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.cpt-table th, .cpt-table td {
    border: 1px solid #ddd;
    padding: 8px;
    vertical-align: top;
}

.cpt-table th {
    background-color: #f7f7f7;
    font-weight: 600;
}

.cpt-table tr:nth-child(even) {
    background-color: #fbfbfb;
}

.cpt-table details summary {
    cursor: pointer;
    outline: none;
    font-weight: 500;
}

.cpt-table details {
    margin: 0;
}

.cpt-disclaimer {
    font-size: 12px;
    color: #666;
    margin-top: 15px;
    font-style: italic;
}

/* Styles for search-based knowledge base results */
.cpt-results {
    margin-top: 10px;
}

.cpt-result {
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    background-color: #fafafa;
}

.cpt-result-title {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 600;
}

.cpt-result-desc {
    margin: 0 0 5px;
}

.cpt-result-steps {
    margin: 5px 0 0 20px;
}