.dbsc-container {
    max-width: 880px;
    margin: 20px auto;
    padding: 14px;
    font-family: Inter, Arial, sans-serif;
}

.dbsc-card {
    background: #ffffff;
    padding: 16px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dbsc-card label {
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dbsc-card input,
.dbsc-card select {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #d8e4df;
    font-size: 1rem;
}

#dbsc-calc,
#dbsc-copy,
#dbsc-print {
    background: #16a34a;
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
}

#dbsc-copy,
#dbsc-print {
    background: #0d9488;
}

.dbsc-result {
    margin-top: 20px;
    background: #f7fdf8;
    border-radius: 12px;
    padding: 16px;
    border: 1px solid #e1f3e5;
    font-size: 1rem;
    line-height: 1.6;
}

.dbsc-description {
    display: block;  /* Ensure it's displayed as a block-level element */
    font-size: 1.1rem;
    color: #374151;
    margin-bottom: 20px; /* Adds space below the description */
    margin-top: 20px;    /* Optional: adds space above if you want more room */
}