.bmrv2-container {
    max-width: 800px;
    margin: 30px auto;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.bmrv2-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
}

.tablebmr {
	width: 650px;
}

.bmrv2-form-group {
    margin-bottom: 25px;
}

.bmrv2-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.inputbmr {
    width: 120px;
    padding: 6px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.selectbmr {
    width: 200px;
    padding: 6px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.inputbmr input[type=number] {
    padding: 2px;
    width: 120px;
}


.bmrv2-toggle-group {
    display: flex;
    margin-top: 10px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #bdc3c7;
	width: 300px;
}

.bmrv2-toggle-btn {
    flex: 1;
    padding: 6px;
    background-color: #ecf0f1;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.bmrv2-toggle-btn.active {
    background-color: #3498db;
    color: white;
}

.bmrv2-height-inputs, .bmrv2-weight-input {
    display: flex;
    gap: 10px;
}

.bmrv2-height-inputs > div, .bmrv2-weight-input > div {
    flex: 1;
}

.bmrv2-calculate-btn {
    display: block;

    padding: 12px;
    background: linear-gradient(90deg, #2ecc71, #27ae60);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
}

.bmrv2-calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(46, 204, 113, 0.4);
}
/*
.entry-content[data-ast-blocks-layout] > * {
    max-width: var(--wp--custom--ast-content-width-size);
    margin-left: auto;
    margin-right: auto;
}
*/
.bmrv2-result {
    margin: 30px 0 60px 0;
    padding: 15px;
    background: #F3F3F3;
    border-radius: 8px;
    text-align: center;
    display: block;
	/*width: 550px;*/
	margin-left: 1px;
}


.bmrv2-result2 {
	width: 650px;
    margin: 30px 0 30px 0;
    padding: 15px;
    background: #F3F3F3;
    text-align: center;
	border: 0px;
	margin-left: 1px;
}

.bmrv2-result2 h3 {
    margin-bottom: 15px;
}

.bmrv2-result-value {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 15px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.bmrv2-formula-info {
    margin: 30px 0 30px 0;
    padding: 20px;
    background-color: #e8f4fc;
    border-radius: 10px;
    font-size: 14px;
    color: #34495e;
    border-left: 5px solid #3498db;
}

.bmrv2-formula-info h3 {
    margin-bottom: 10px;
    color: #2980b9;
}

.bmrv2-formula-info p {
    margin-bottom: 8px;
}

.bmrv2-formula-info ul {
    padding-left: 20px;
}

.bmrv2-formula-info li {
    margin-bottom: 5px;
    font-family: monospace;
    background-color: #f8f9fa;
    padding: 5px 10px;
    border-radius: 5px;
    border-left: 3px solid #3498db;
}

.bmrv2-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 0px;
}

.bmrv2-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.bmrv2-input-hint {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-top: 5px;
}

@media (max-width: 600px) {
    .bmrv2-container {
        padding: 20px;
    }
    
    .bmrv2-container h1 {
        font-size: 2rem;
    }
    
    .bmrv2-height-inputs, .bmrv2-weight-input {
        flex-direction: column;
        gap: 10px;
    }
}