/* RGY TechData Frontend Styles */
.rgytechdata-section {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 4px solid #25b9d7;
}

.rgytechdata-section h3 {
    margin-bottom: 15px;
    color: #363a41;
    font-weight: 600;
    font-size: 16px;
}

.rgytechdata-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.rgytechdata-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e5e5e5;
}

.rgytechdata-item:last-child {
    border-bottom: none;
}

.rgytechdata-item dt {
    font-weight: 600;
    color: #555;
    flex: 1;
}

.rgytechdata-item dd {
    margin: 0;
    color: #363a41;
    flex: 1;
    text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
    .rgytechdata-item {
        flex-direction: column;
    }
    
    .rgytechdata-item dd {
        text-align: left;
        margin-top: 5px;
    }
}