/*
 PHP version 8.0~

 @license   Commercial
 @copyright Copyright (c) 2026 Ingo Koch
 @link      http://www.computer-freak24.de
 @version   v1.5 07.2026
 @author    Ingo Koch <koch.ingo@t-online.de>
 @lastEdit  05.07.2026
*//* 
    Created on : 05.07.2026, 05:52:39
    Author     : stixnroll
*/
.bo-card {
    display: flex;
    flex-direction: column;

    background: var(--bo-surface);

    border: 1px solid var(--bo-border);
    border-radius: var(--bo-radius);

    box-shadow: var(--bo-shadow);

    overflow: hidden;
}

.bo-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 22px;

    background: var(--bo-surface-soft);

    border-bottom: 1px solid var(--bo-border);

    font-size: 1.05rem;
    font-weight: 600;
}

.bo-card-body {
    padding: 22px;
    flex: 1;
}

.bo-card-footer {
    padding: 18px 22px;

    background: var(--bo-surface-soft);

    border-top: 1px solid var(--bo-border);
}

.bo-card + .bo-card {
    margin-top: 24px;
}
