.pricelist-module {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.4;
    color: #333;
}

.pricelist-module :root {
    --primary-blue: #003399;
    --secondary-red: #cc0000;
    --bg-gray: #f4f4f4;
}

.pricelist-module .container {
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.pricelist-module header {
    border-bottom: 3px solid #003399;
    padding-bottom: 10px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pricelist-module .logo-text {
    font-size: 28px;
    font-weight: bold;
    color: #003399;
}

.pricelist-module h2 {
    color: #003399;
    border-left: 5px solid #cc0000;
    padding-left: 10px;
    margin-top: 30px;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.pricelist-module table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.pricelist-module th,
.pricelist-module td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.pricelist-module th {
    background-color: #f8f8f8;
    font-weight: bold;
}

.pricelist-module .fee {
    font-weight: bold;
    color: #cc0000;
    white-space: nowrap;
}

.pricelist-module .alert {
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
}

.pricelist-module .alert-warning {
    background-color: #fff9c4;
    border: 1px solid #fbc02d;
    color: #856404;
}

.pricelist-module .highlight-box {
    background-color: #fff9c4;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #fbc02d;
    margin: 10px 0;
}

.pricelist-module .footer-info {
    margin-top: 30px;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

@media print {
    .pricelist-module .container {
        box-shadow: none;
        width: 100%;
        max-width: 100%;
    }

    .pricelist-module button {
        display: none;
    }
}