/* ===============================
   HASH GENERATOR - FINAL POLISH
   HeetDevLab Secure Tools
   =============================== */
.seo-content {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding-left: 30px;
  padding-right: 15px;
}
/* HERO */


.hero p {
    margin-top: 12px;
}

/* MAIN CARD */
/* ===== FIX WIDTH ISSUE ===== */

.content {
    width: 100%;
    padding: 30px 15px;
}

.checker-box {
    width: 100%;
    max-width: 100%;
    padding: 25px 20px;
    border-radius: 22px;
    box-sizing: border-box;
}
/* ===== FIX TEXT COLOR ISSUE ===== */

textarea,
#hashOutput {
    color: #ffffff !important;
    caret-color: #00f5ff;
}

textarea::placeholder {
    color: rgba(255,255,255,0.5);
}
/* Remove inner fake double effect */
textarea {
    font-family: 'Courier New', monospace;
    width: 100%;
    min-height: 160px;
    padding: 16px;
    border-radius: 18px;
    background: #061826;
    border: 1px solid rgba(0,245,255,0.5);
    box-sizing: border-box;
    margin-bottom: 25px;
}

/* Output box full width */
#hashOutput {
    width: 100%;
    box-sizing: border-box;
}

textarea:focus {
    outline: none;
    box-shadow: 0 0 30px rgba(0,245,255,0.6);
}

/* GENERATE BUTTON */
.primary-btn {
    display: block;
    margin: 0 auto 35px auto;
    padding: 14px 45px;
    border-radius: 40px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px #00f5ff;
}

/* RESULT SECTION */
.result-box {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 25px;
}

#hashOutput {
    flex: 1;
    padding: 16px;
    border-radius: 22px;
    background: rgba(3,15,28,0.95);
    border: 1px solid rgba(0,245,255,0.5);
    color: #00f5ff;
    font-size: 0.85rem;
    word-break: break-all;
    box-shadow: 0 0 15px rgba(0,245,255,0.15);
}

/* COPY BUTTON */
.small-btn {
    padding: 13px 25px;
    border-radius: 35px;
    white-space: nowrap;
}

/* LENGTH INFO */
.metrics {
    text-align: center;
    margin: 20px 0 10px;
    font-size: 1rem;
    color: #cfd8e3;
}

/* CLEAR BUTTON */
.btn {
    display: block;
    margin: 20px auto 0 auto;
    padding: 12px 40px;
    border-radius: 30px;
}

/* BACK LINK */
a.btn {
    margin-top: 30px;
}

/* FOOTER */
.main-footer {
    text-align: center;
    padding: 70px 20px 40px;
    font-size: 0.85rem;
    color: #7f8c9d;
}

/* MOBILE FIX */
@media (max-width: 600px) {

    .checker-box {
        padding: 25px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .result-box {
        flex-direction: column;
    }

    .small-btn {
        width: 100%;
    }
}
.hash-select {
    width: 100%;
    padding: 12px;
    border-radius: 15px;
    background: #061826;
    border: 1px solid #00f5ff;
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 1rem;
}

.hash-select:focus {
    outline: none;
    box-shadow: 0 0 15px rgba(0,245,255,0.5);
}
/* MODE SWITCH */
.mode-switch {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.mode-btn {
    flex: 1;
    padding: 10px;
    border-radius: 25px;
    border: 1px solid #00f5ff;
    background: transparent;
    color: #00f5ff;
    cursor: pointer;
    transition: 0.3s;
}

.mode-btn.active {
    background: #00f5ff;
    color: #000;
}
.compare-result {
    text-align: center;
    font-weight: bold;
    margin: 20px 0;
    padding: 15px;
    border-radius: 15px;
    background: rgba(0,0,0,0.3);
    transition: 0.3s;
}

.algo-info {
    text-align: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #00f5ff;
}
.jwt-status {
    text-align: center;
    margin: 20px 0;
    padding: 12px;
    border-radius: 15px;
    background: rgba(0,0,0,0.3);
}
