/* =========================
   METAL CALCULATOR FULL FIX
   SAFE FOR ANY THEME
========================= */

.metal-calculator-wrapper {
  padding: 50px 15px;
  background: #f4f6f9;
}

/* Header */
.calc-header {
  text-align: center;
  margin-bottom: 30px;
}

.calc-header h1 {
  font-size: 32px;
}

/* Layout */
.calc-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Cards */
.calc-card {
  flex: 1;
  min-width: 320px;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* Inputs */
.calc-card label {
  font-weight: bold;
  display: block;
  margin-top: 10px;
}

.calc-card select,
.calc-card input {
  width: 100%;
  padding: 10px;
  margin: 8px 0 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* Buttons */
.calc-actions {
  display: flex;
  gap: 10px;
}

.calc-actions button {
  flex: 1;
  padding: 10px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

#calcBtn {
  background: #007bff;
  color: #fff;
}

#resetBtn {
  background: #6c757d;
  color: #fff;
}

/* Results */
.result-box {
  background: #f8f9fa;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
}

.result-box h3 {
  margin: 5px 0 0;
}

/* Warning */
.warn {
  color: red;
  font-size: 13px;
}

/* IMPORTANT FIX (footer protection) */
footer,
.footer {
  position: relative !important;
  float: none !important;
  width: 100% !important;
}/* =========================
   NICKEL TYPES
========================= */

.nickel-types ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nickel-types ul li {
    width: 48%;
    display: inline-block;
    vertical-align: top;
    margin: 1%;
    background: #ffffff;
    padding: 15px;
    border-left: 4px solid #0b1f4d;
    border-radius: 8px;
    box-sizing: border-box;
}

/* Mobile */

@media screen and (max-width: 768px) {

    .nickel-types ul li {
        width: 100%;
        margin: 0 0 15px;
    }

}

/* COUNTRY LIST ONE LINE */

.domastic-area{
    width:100%;
    border-collapse:collapse;
}

.domastic-area td{
    border:1px solid #dcdcdc;
    padding:12px 15px;
    width:33.33%;

    background:#ffffff;
    color:#222;

    font-size:15px;
    font-weight:500;

    white-space:nowrap;   /* KEEP TEXT IN ONE LINE */
}

/* FLAG */
.domastic-area td img{
    width:18px;
    height:12px;
    object-fit:cover;
    margin-right:8px;
    vertical-align:middle;
}


/* FORCE HOMEPAGE FAQ DARK */

body.home-page .faq-box{
    background:#24304a !important;
    border:1px solid rgba(255,255,255,0.08) !important;
    border-radius:8px !important;
}

body.home-page .faq-box summary{
    background:#24304a !important;
    color:#ffffff !important;
    position:relative;
    padding:18px 60px 18px 20px !important;
}

/* RIGHT PLUS ICON */
body.home-page .faq-box summary::after{
    content:"+" !important;
    position:absolute;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    width:28px;
    height:28px;
    line-height:28px;
    text-align:center;
    border-radius:50%;
    background:rgba(255,255,255,0.08) !important;
    color:#ffffff !important;
    font-size:20px;
}

/* OPEN STATE */
body.home-page .faq-box[open] summary::after{
    content:"−" !important;
}

body.home-page .faq-content{
    background:#24304a !important;
    color:#d6d6d6 !important;
}


/* INNER PAGE LIGHT FAQ */

.inner-page .faq-box{
    background:#ffffff;
    border:1px solid #e5e5e5;
}

.inner-page .faq-box summary{
    color:#222;
}

.inner-page .faq-content{
    color:#555;
}

/* STRONG COPY PROTECTION */

html, body, p, span, div, li, td, h1, h2, h3, h4, h5, h6, a{
    -webkit-user-select:none !important;
    -moz-user-select:none !important;
    -ms-user-select:none !important;
    user-select:none !important;
}

/* Disable image dragging */

img{
    -webkit-user-drag:none !important;
    user-drag:none !important;
    pointer-events:none !important;
}









