.bedtg-wrapper {
    max-width: 1000px;
    margin: 20px auto;
    font-family: 'Segoe UI', Tahoma, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Top Grid */
.bedtg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.bedtg-col h3 {
    font-size: 22px;
    color: #444;
    border-bottom: 2px solid #ff3363;
    display: inline-block;
    margin-bottom: 10px;
}

/* Bottom Section */
.bedtg-bottom-section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 20px;
    background: #fdfdfd;
    border-top: 1px solid #eee;
}

.bedtg-bottom-left { flex: 1; }

.bedtg-tool-box {
    flex: 1;
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Form Styling */
.bedtg-form-group {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

#bedtg-qty {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid #ccc;
}

.bedtg-radio-group label {
    display: block;
    cursor: pointer;
    font-size: 14px;
}

.bedtg-main-btn {
    background: #ff3363;
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    transition: 0.3s;
}

.bedtg-main-btn:hover { background: #e62e59; }

/* Result Area */
#bedtg-result-container {
    margin-top: 30px;
    border: 2px solid #ff3363;
    border-radius: 8px;
    overflow: hidden;
}

.bedtg-result-header {
    background: #ff3363;
    color: #f2f2f2;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#bedtg-result-content {
    padding: 20px;
    background: #fff;
    max-height: 400px;
    overflow-y: auto;
}

@media (max-width: 768px) {
    .bedtg-grid, .bedtg-bottom-section { grid-template-columns: 1fr; flex-direction: column; }
}