/* ===== 4Tel REMOTE – MAX VISIBILITY ===== */

:root{
  --bg:#0d2f6f;            /* tamno 4Tel plava */
  --accent:#ff8c00;        /* 4Tel narančasta */
  --accent-dark:#cc6f00;
  --text:#ffffff;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* makni razmake iz stare tablice */
table{
  width:100%;
  border-collapse: collapse;
}

th, td{
  padding: 18px 0;
}

/* GUMB */
.button,
input[type="submit"]{
  width:100% !important;

  min-height: 180px !important;        /* JAKO VISOKO */

  background: var(--accent) !important;
  color:#ffffff !important;

  border:none;
  border-radius: 28px;

  font-size: 8vw !important;           /* skalira se s ekranom */
  font-weight: 900;
  letter-spacing: 3px;

  padding: 30px 10px;
  margin-bottom: 28px;

  cursor:pointer;
  display:block;

  box-shadow: 0 12px 0 var(--accent-dark);
  -webkit-tap-highlight-color: transparent;
}

/* efekt pritiska */
.button:active{
  transform: translateY(8px);
  box-shadow: 0 5px 0 var(--accent-dark);
}

/* user tekst */
.footer,
small{
  font-size: 5vw;
  text-align:center;
  margin-top: 20px;
}

/* poruke */
h1{
  font-size: 7vw;
  text-align:center;
}
