/* ... existing code ... */

/* Styles for the detail button */
.detail-btn {
    background-color: #00aaff;
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.detail-btn:hover {
    background-color: #0088cc;
}

/* Styles for the specification details */
.spec-details {
    margin-top: 10px;
    padding: 10px;
    background-color: #1a1a2e;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.5;
    color: #cccccc;
}

/* ... existing code ... */