/* pc-builder.css */

/* General container */
#pc-builder-container {
    font-family: Arial, sans-serif;
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #f9f9f9;
}

/* Section Titles */
#pc-builder-container h2 {
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid #0073aa;
    color: #333;
}

/* Dropdown selectors */
.pc-builder-section select {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Selected build list */
#selected-build {
    margin-top: 20px;
    padding: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#selected-build ul {
    list-style: none;
    padding-left: 0;
}

#selected-build li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

/* Total Price */
#pc-builder-total {
    font-weight: bold;
    font-size: 1.2em;
    margin-top: 10px;
}

/* Add to Amazon Button */
#checkout-amazon {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 15px;
    background: #ff9900;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

#checkout-amazon:hover {
    background: #cc7a00;
}
