/* solution_finder/static/css/playbook_styles.css */

:root {
    --r2-primary: #c2185b;
    --r2-primary-darker: #a9154f;
    --r2-secondary: #4a148c;
    --r2-light-gray: #f5f5f5;
    --r2-dark-gray: #333;
    --r2-white: #ffffff;
    --r2-font-primary: 'Poppins', sans-serif;
    --r2-font-secondary: 'Roboto', sans-serif;
}

body {
    background-color: var(--r2-light-gray);
    font-family: var(--r2-font-secondary);
    color: var(--r2-dark-gray);
}

.playbook-header {
    background: linear-gradient(135deg, var(--r2-primary), var(--r2-secondary));
    color: var(--r2-white);
    padding: 3rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

.playbook-header h1 {
    font-family: var(--r2-font-primary);
    font-weight: 700;
}

.card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.card-header {
    background-color: var(--r2-white);
    border-bottom: 1px solid #eee;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.card-header h3 {
    font-family: var(--r2-font-primary);
    font-weight: 600;
    color: var(--r2-primary);
}

.integration-list .list-group-item {
    border-bottom: 1px solid #eee;
}

.integration-list .list-group-item:last-child {
    border-bottom: none;
}

.cta-section {
    background-color: var(--r2-secondary);
    color: var(--r2-white);
    padding: 3rem;
    border-radius: 1rem;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--r2-font-primary);
    font-weight: 700;
}

.btn-primary {
    background-color: var(--r2-primary);
    border-color: var(--r2-primary);
    padding: 1rem 2rem;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--r2-primary-darker);
    border-color: var(--r2-primary-darker);
    transform: translateY(-3px);
}

/*------------------------------------------------------------------
[Tool Card Enhanced]
*/
.tool-card-enhanced {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease-in-out;
}

.tool-card-enhanced:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tool-card-enhanced .tool-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.tool-card-enhanced .tool-logo {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 5px;
    flex-shrink: 0;
}

.tool-card-enhanced .tool-title {
    flex-grow: 1;
}

.tool-card-enhanced .tool-title h4 {
    font-weight: 600;
}

.tool-card-enhanced h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 2px solid #0d6efd;
    padding-bottom: 5px;
    display: inline-block;
}

.tool-card-enhanced .list-unstyled li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.tool-card-enhanced .bi {
    font-size: 1rem;
}

.tool-card-enhanced .alert {
    font-size: 0.95rem;
}