/* GENEL RESET */
body {
    margin: 0;
}

/* ÜST MODÜL */
#epoksi-module {
    position: relative;
    width: 100%;
    height: 30dvh;          /* mobil uyumlu */
    min-height: 30vh;       /* fallback */
    overflow: hidden;
    background: rgba(209, 209, 17, 0.3);
    margin-bottom: 40px;     /* alt içerik üstüne binmesin */
}

/* ARKA PLAN ve LABEL KATMANI */
#bg,
#labels {
    position: absolute;
    inset: 0; /* top, left, width, height yerine */
}

/* Katman sırası */
#bg {
    z-index: 1;
}

#labels {
    z-index: 2;
}

/* LABEL */
.label {
    position: absolute;
    color: #000;
    pointer-events: none;
    white-space: nowrap;
    text-shadow: 0 0 8px rgba(255,255,255,0.9);
    font-weight: bold;
}

/* ALT FİYAT ALANI */
.epoksi-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    color: #333;
    position: relative;
    z-index: 2;
    background: #fff;
}

/* BAŞLIK */
.epoksi-title {
    text-align: center;
    margin-bottom: 20px;
}

/* TABLO */
.epoksi-table {
    width: 100%;
    border-collapse: collapse;
}

.epoksi-table th,
.epoksi-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.epoksi-table th {
    background: #333;
    color: #fff;
}

/* NOT ALANI */
.epoksi-note {
    margin-top: 20px;
    padding: 15px;
    background: #fff3cd;
    border-left: 5px solid #ffc107;
}