﻿.opi-dbd-header {
    font-size: 28px;
    font-weight: 500;
    color: white;
}

.opi-dbd-card-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    padding: 20px;
    gap: 10px;
    justify-content: space-around;
}

.opi-dbd-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 10;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    height: 120px;
}

.opi-dbd-card-header {
    font-size: 24px;
    font-weight: 500;
    color: #ebbb18;
}

.opi-dbd-card-descrp {
    display: flex;
    justify-content: flex-end;
    font-size: 32px;
    font-weight: 500;
    color: whitesmoke;
}

.opi-dbd-table-container {
    height: 62vh;
    overflow: auto;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 10;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
}

.opi-form-container {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    z-index: 10;
    margin: 20px;
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
}

.opi-form-header {
    padding: 5px 0px 5px 0px;
    color: #ebbb18;
    font-size: 20px;
}

.opi-form-input-group {
    padding: 0px 0px 10px 0px;
    color: white;
}