/**
 * Frontend styles for Alltron AI Enhanced Product Tabs
 */

/* Specs Tab Content */
.alltron-specs-content {
    padding: 20px 0;
}

.alltron-specs-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.alltron-specs-content table th,
.alltron-specs-content table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.alltron-specs-content table th {
    background-color: #f5f5f5;
    font-weight: 600;
    width: 30%;
}

.alltron-specs-content table tr:hover {
    background-color: #fafafa;
}

.alltron-specs-content h3,
.alltron-specs-content h4 {
    margin-top: 25px;
    margin-bottom: 15px;
    color: #333;
}

/* Tips Tab Content */
.alltron-tips-content {
    padding: 20px 0;
}

.alltron-tips-content .tips-section,
.alltron-tips-content .manuals-section {
    margin-bottom: 30px;
}

.alltron-tips-content h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.3em;
}

.alltron-tips-content h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: #555;
    font-size: 1.1em;
}

.alltron-tips-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.alltron-tips-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.alltron-tips-content strong {
    color: #333;
}

/* Manual Links */
.alltron-tips-content .manual-links {
    list-style: none;
    margin: 15px 0;
    padding: 0;
}

.alltron-tips-content .manual-links li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.alltron-tips-content .manual-links li:before {
    content: "\f1c1";
    font-family: "dashicons";
    position: absolute;
    left: 0;
    top: 2px;
    color: #0073aa;
}

.alltron-tips-content .manual-links a {
    color: #0073aa;
    text-decoration: none;
    font-weight: 500;
}

.alltron-tips-content .manual-links a:hover {
    color: #005177;
    text-decoration: underline;
}

/* General Content Styling */
.alltron-specs-content p,
.alltron-tips-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .alltron-specs-content table th,
    .alltron-specs-content table td {
        padding: 10px;
        font-size: 0.9em;
    }

    .alltron-specs-content table th {
        width: 40%;
    }
}