body
{
    margin: 2px;
    font-family: Verdana, Arial, Serif;
    font-size: 12px;
}


td
{
    vertical-align: middle;
    font-size: 12px;
}

td.fieldname
{
    text-align: right;
    font-size: 12px;
    font-weight:bold;
}

hr
{
    color: Maroon;
}

p
{
    font-size: 12px;
}

a
{
    font-size: 100%;
    text-decoration: underline;
    color: #B33500;
}

a:hover
{
    text-decoration: none;
}

input.button
{
    font-size: 100%;
    background-color: #C0C0C0;
}

img
{
    border: none;
}

dt
{
    font-weight: bold;
    padding-bottom: 5px;
    margin-left: 10px;
}

dd
{
    margin-left: 10px;
    padding-bottom: 20px;
}

.small
{
    font-size: 80%;
}

.medium
{
    font-size: 90%;
}

.paybutton
{
    font-size: 12px;
    background-color: #C0C0C0;
    margin-left: 20px;
}

.error
{
    text-decoration: none;
    color: red;
}

.success
{
    text-decoration: none;
    color: Green;
}

.sectiontitle
{
    font-size: 120%;
    color: Maroon;
}

.sectionsubtitle
{
    font-weight: bold;
    padding-bottom: 4px;
}

/* Assuming you have Font Awesome included in your project for icons */
/* Basic callout style */
.callout {
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #eee;
    border-left-width: 5px;
    border-radius: 5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    position: relative; /* For icon positioning if needed */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);

    /* Add these lines for vertical centering */
    display: flex; /* Enables flexbox layout */
    align-items: center; /* Vertically centers the flex items (your icon and p tag) */
}

.callout p {
    margin: 0;
}

.callout > .fas {
    /* Targets Font Awesome icons within a paragraph in a .callout */
    margin-right: 8px;

    /* Ensure your vertical-align is still good if you've set it */
    vertical-align: middle;
}

.callout strong {
    /* Style the bold text often used for labels like "Info:" */
    margin-right: 5px;
}

/* Informational Callout */
.callout-info {
    background-color: #e7f3fe;
    border-left: 5px solid #2196F3; /* Blue */
    color: #1d72b8;
}

.callout-info::before {
    /* Example using Font Awesome icon */
    /* content: "\f05a"; /* Font Awesome info icon */
    /* font-family: "Font Awesome 5 Free"; /* Adjust based on your FA version */
    /* font-weight: 900; */
    /* margin-right: 10px; */
    /* color: #2196F3; */
    /* You might need to adjust positioning based on your icon library */
}

/* Warning Callout */
.callout-warning {
    background-color: #fff8e1;
    border-left: 5px solid #FFC107; /* Amber */
    color: #c79100;
}

.callout-warning::before {
    /* content: "\f071"; /* Font Awesome warning icon */
    /* font-family: "Font Awesome 5 Free"; */
    /* font-weight: 900; */
    /* margin-right: 10px; */
    /* color: #FFC107; */
}

/* Success Callout */
.callout-success {
    background-color: #e8f5e9;
    border-left: 5px solid #4CAF50; /* Green */
    color: #388E3C;
}

.callout-success::before {
    /* content: "\f058"; /* Font Awesome check-circle icon */
    /* font-family: "Font Awesome 5 Free"; */
    /* font-weight: 900; */
    /* margin-right: 10px; */
    /* color: #4CAF50; */
}

/* Danger Callout */
.callout-danger {
    background-color: #ffebee;
    border-left: 5px solid #F44336; /* Red */
    color: #c62828;
}

.callout-danger::before {
    /* content: "\f06a"; /* Font Awesome exclamation-circle icon */
    /* font-family: "Font Awesome 5 Free"; */
    /* font-weight: 900; */
    /* margin-right: 10px; */
    /* color: #F44336; */
}