/* Algemene pagina */
body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #ffffff;
    color: #111111;
    margin: 0;
    line-height: 1.6;
}

img {
max-width: 200px;
}

.pc_orders_td2_row {
white-space: nowrap;
}

.pc_detail_right_title_td, .pc_detail_right_tldesc_td {
font-size: 20px;
font-weight: bold;
}

/* Container */
#content, .container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

/* Header */
header, .header {
    background: #ffffff;
    border-bottom: 3px solid #cc0000;
    padding: 20px;
}

/* Titels */
h1 {
    color: #cc0000;
}

h2, h3 {
    color: #222;
}

/* Links */
a {
    color: #cc0000;
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
}

/* Navigatie */
nav, .menu {
    background: #f5f5f5;
    border-bottom: 2px solid #cc0000;
}

nav a, .menu a {
    color: #111;
    padding: 10px 14px;
    display: inline-block;
}

nav a:hover {
    background: #cc0000;
    color: white;
}

/* Knoppen */
button, .btn, input[type=submit] {
    background: #cc0000;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
}

button:hover, .btn:hover, input[type=submit]:hover {
    background: #990000;
}

/* Formulieren */
input, textarea, select {
    border: 1px solid #ccc;
    padding: 8px;
    border-radius: 4px;
}

input:focus, textarea:focus {
    border-color: #cc0000;
    outline: none;
}

/* Tabellen */
table {
    max-width: 800px;
    border-collapse: collapse;
}

table th {
    background: #cc0000;
    color: white;
    padding: 10px;
}

table td {
    border-bottom: 1px solid #ddd;
    padding: 10px;
}

table tr:nth-child(even) {
    background: #f7f7f7;
}

/* Cards / blokken */
.card {
    border: 1px solid #e5e5e5;
    border-left: 5px solid #cc0000;
    padding: 20px;
    margin-bottom: 20px;
    background: #fff;
}

/* Footer */
footer {
    border-top: 2px solid #cc0000;
    padding: 20px;
    text-align: center;
    color: #666;
}