﻿/* Global Styles for the Callouts */
.bs-callout {
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

    .bs-callout h4 {
        margin: 0 !important;
        font-weight: bold;
    }

    .bs-callout p {
        margin: 0 !important;
        padding: 0;
        color: #495057;
        font-size: 1.1rem;
    }

        .bs-callout p:last-child {
            margin-bottom: 0;
        }

    .bs-callout code {
        border-radius: 3px;
    }

    .bs-callout + .bs-callout {
        margin-top: -5px;
    }

    .bs-callout .callout-icon {
        font-size: 28px;
        margin-right: 10px;
        color: inherit;
    }

    .bs-callout .callout-container {
        display: flex;
        align-items: center;
    }

/* Individual Callout Color Styles */
.bs-callout-default {
    border-left: 5px solid #777;
    background-color: #f7f7f7;
}

    .bs-callout-default h4 {
        color: #777;
    }

.bs-callout-primary {
    border-left: 5px solid #428bca;
    background-color: #eaf4fc;
}

    .bs-callout-primary h4 {
        color: #428bca;
    }

.bs-callout-success {
    border-left: 5px solid #5cb85c;
    background-color: #d4edda;
}

    .bs-callout-success h4 {
        color: #5cb85c;
    }

.bs-callout-danger {
    border-left: 5px solid #d9534f;
    background-color: #f8d7da;
}

    .bs-callout-danger h4 {
        color: #d9534f;
    }

.bs-callout-warning {
    border-left: 5px solid #f0ad4e;
    background-color: #fff3cd;
}

    .bs-callout-warning h4 {
        color: #f0ad4e;
    }

.bs-callout-info {
    border-left: 5px solid #5bc0de;
    background-color: #d1ecf1;
}

    .bs-callout-info h4 {
        color: #5bc0de;
    }

/* Adding Icon to Callouts */
.bs-callout .callout-container i {
    font-size: 24px;
    margin-right: 15px;
    color: inherit;
}

.bs-callout .callout-container i {
    font-size: 28px;
    color: inherit;
}
