.sdc-container {
    background: #eeeeee;
    padding: 20px;
    border: 1px solid #bbbbbb;
    border-radius: 8px;
    max-width: 400px;
    margin: 20px auto;
    font-family: 'Manrope', sans-serif;
    color: #000000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sdc-container h2 {
    font-size: 22px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: bold;
    color: #1976ea;
}

.sdc-container label {
    display: block;
    margin-top: 10px;
    font-weight: 500;
    color: #000000;
}

.sdc-container input {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #bbbbbb;
    border-radius: 4px;
    cursor: pointer;
    background: #ffffff;
    color: #000000;
}

.sdc-container button {
    margin-top: 10px;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#sdc-calc {
    background-color: #1976ea;
    color: #fff;
}

#sdc-calc:hover {
    background-color: #219b92;
}

#sdc-reset {
    background-color: #1976ea;
    color: #fff;
}

#sdc-reset:hover {
    background-color: #219b92;
    color: #fff;
}

#sdc-result {
    margin-top: 15px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #bbbbbb;
    border-radius: 4px;
    color: #000000;
}

#sdc-result p {
    margin: 2px 0;
    line-height: 1.3;
    color: #000000;
}