/**
 * AmberLife API Importer Frontend Styles
 * Styles for the API specifications shortcode
 */

.alai-api-specifications {
    margin: 20px 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.alai-spec-item {
    display: block;
    line-height: 1.6;
    font-size: 15px;
    color: #333;
}

.alai-spec-item:last-child {
    margin-bottom: 0;
}

.alai-spec-label {
    display: inline-block;
    min-width: 170px;
    color: #333;
    font-weight: 500;
    margin-right: 10px;
    vertical-align: top;
}

.alai-spec-label strong {
    font-weight: 600;
    color: #333;
}

.alai-spec-value {
    display: inline-block;
    color: #555;
    word-wrap: break-word;
    max-width: calc(100% - 200px);
    vertical-align: top;
}

/* Responsive design */
@media (max-width: 768px) {
    .alai-spec-item {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .alai-spec-label {
        display: block;
        min-width: auto;
        margin-bottom: 4px;
        margin-right: 0;
    }
    
    .alai-spec-value {
        display: block;
        max-width: 100%;
        margin-left: 0;
    }
}

/* Optional: Match theme colors if needed */
.alai-api-specifications .alai-spec-label strong {
    /* You can customize this color to match your theme */
    /* color: #6e389e; */ /* Purple theme color example */
}