.bmic-uniq-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.bmic-input-group {
    margin-bottom: 20px;
}
.bmic-input-row {
    margin-bottom: 15px;
}
.bmic-input-label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
}
.bmic-input-wrapper {
    display: flex;
    align-items: stretch;
    height: 48px;
}
.bmic-input-field {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px 0 0 6px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s;
    height: 100%;
    line-height: 24px;
}
.bmic-input-field:focus {
    outline: none;
    border-color: #4a90e2;
}
.bmic-unit-selector-wrapper {
    position: relative;
    width: 90px;
    height: 100%;
}
.bmic-unit-selector {
    width: 100%;
    height: 100%;
    padding: 0 25px 0 15px;
    border: 1px solid #ddd;
    border-left: none;
    border-radius: 0 6px 6px 0;
    background-color: #f8f9fa;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    box-sizing: border-box;
    line-height: 48px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-align: left;
}
.bmic-unit-selector:focus {
    outline: none;
    border-color: #4a90e2;
    background-color: #fff;
}
.bmic-dropdown-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #666;
    pointer-events: none;
}
.bmic-fixed-unit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    border: 1px solid #ddd;
    border-left: none;
    border-radius: 0 6px 6px 0;
    background-color: #f8f9fa;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
    height: 100%;
    padding: 0 10px;
}
.bmic-button-wrap {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}
.bmic-calc-btn {
    padding: 14px 50px;
    background-color: #4a90e2;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    height: 50px;
    line-height: 22px;
}
.bmic-calc-btn:hover {
    background-color: #3a7bc8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(58, 123, 200, 0.2);
}
.bmic-calc-btn:active {
    transform: translateY(0);
}
.bmic-result-section {
    text-align: center;
    margin-bottom: 35px;
    min-height: 100px;
}
.bmic-result-box {
    display: inline-block;
    padding: 25px 40px;
    background-color: #f8f9fa;
    border-left: 5px solid #4a90e2;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.bmic-result-value {
    font-size: 32px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}
.bmic-result-status {
    font-size: 17px;
    color: #555;
}
.bmic-knowledge-card {
    margin-top: 40px;
    padding: 25px;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
    border-radius: 8px;
}
.bmic-knowledge-title {
    font-size: 19px;
    color: #333;
    margin-bottom: 18px;
    font-weight: 600;
}
.bmic-knowledge-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}
.bmic-accordion {
    margin-top: 20px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    overflow: hidden;
}
.bmic-accordion-header {
    padding: 14px 18px;
    background-color: #f1f1f1;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}
.bmic-accordion-header:hover {
    background-color: #e8e8e8;
}
.bmic-accordion-content {
    padding: 18px;
    background-color: white;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}
.bmic-accordion-content ul {
    margin: 12px 0;
    padding-left: 22px;
}
.bmic-accordion-content li {
    margin-bottom: 8px;
}