/* ============================================================
   Password & Security Hash Generator Styling - Scenic IT Solutions
   ============================================================ */

/* Password Output Container */
.sec-password-output-box {
  background: #0d0d12;
  border: 2px solid #26262e;
  border-radius: 18px;
  padding: 25px;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.sec-password-text {
  font-family: 'Courier New', Courier, monospace;
  font-size: 24px;
  font-weight: 700;
  color: #0099E5;
  letter-spacing: 1.5px;
  word-break: break-all;
  margin-bottom: 20px;
  min-height: 36px;
}

/* Password Strength Indicator Meter */
.sec-strength-bar-wrap {
  width: 100%;
  height: 10px;
  background: #1c1c24;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 12px;
}

.sec-strength-fill {
  height: 100%;
  width: 0%;
  border-radius: 20px;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.sec-strength-info {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #aaaaaa;
}

.sec-strength-label {
  font-weight: 600;
}

/* Hash Output Cards */
.sec-hash-card {
  background: #0d0d12;
  border: 1px solid #24242e;
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 16px;
  transition: border-color 0.25s ease;
}

.sec-hash-card:hover {
  border-color: #0099E5;
}

.sec-hash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.sec-hash-title {
  font-size: 15px;
  font-weight: 600;
  color: #F68B1F;
  text-transform: uppercase;
}

.sec-hash-val {
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  color: #dddddd;
  word-break: break-all;
  background: #07070a;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #1a1a22;
}

.sec-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 15px;
}

.sec-checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0d0d12;
  border: 1px solid #24242e;
  border-radius: 12px;
  padding: 14px 18px;
  cursor: pointer;
  color: #cccccc;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.sec-checkbox-item:hover {
  border-color: #F68B1F;
  color: #ffffff;
}

.sec-crack-time-wrap {
  margin-top: 15px;
}

.sec-copy-wrapper {
  margin-top: 20px;
}

.sec-copy-pwd-btn-full {
  width: 100% !important;
}
