html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

body {
    background: #f4f6f9;
    font-family: "Segoe UI", Arial, sans-serif;
}

.app-navbar {
    background: linear-gradient(90deg, #063b2f, #0b6b4f);
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.app-container {
    padding: 30px;
}

.page-header {
    background: white;
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 24px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    border-left: 6px solid #0b6b4f;
}

    .page-header h1 {
        font-weight: 700;
        margin-bottom: 4px;
        color: #063b2f;
    }

    .page-header p {
        margin-bottom: 0;
        color: #6c757d;
    }

.card {
    border: none;
    border-radius: 14px;
    overflow: hidden;
}

.card-header {
    font-weight: 600;
    padding: 14px 18px;
}

.form-label {
    font-weight: 600;
    color: #333;
}

.form-control,
.form-select {
    border-radius: 10px;
    padding: 10px 12px;
}

.btn {
    border-radius: 10px;
    font-weight: 600;
}

.table th {
    white-space: nowrap;
}

.table td {
    vertical-align: middle;
}

.app-footer {
    padding: 20px;
    text-align: center;
    color: #777;
}

.clickable-row {
    cursor: pointer;
}

    .clickable-row:hover {
        background-color: #eaf7f1 !important;
    }

.review-table td {
    white-space: nowrap;
}

.remediation-action {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    text-align: left;
}

    .remediation-action span {
        font-size: 18px;
        font-weight: 800;
    }

    .remediation-action small {
        font-weight: 500;
        color: #6c757d;
        line-height: 1.35;
    }

.remediation-table-wrap {
    max-height: 70vh;
}

.remediation-table {
    min-width: 2300px;
}

    .remediation-table th,
    .remediation-table td {
        white-space: nowrap;
    }

.remediation-input {
    min-width: 120px;
}

    .remediation-input.sku-input {
        min-width: 150px;
    }

    .remediation-input.name-input {
        min-width: 260px;
    }

    .remediation-input.number-input {
        min-width: 150px;
    }

.summary-box {
    background: #f8f9fa;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid #e5e7eb;
}

    .summary-box h3 {
        font-size: 32px;
        font-weight: 800;
        margin-bottom: 4px;
        color: #063b2f;
    }

    .summary-box p {
        margin-bottom: 0;
        color: #6c757d;
        font-weight: 600;
    }

    .summary-box.success {
        background: #eaf7f1;
    }

    .summary-box.danger {
        background: #fff0f0;
    }

.login-wrapper {
    min-height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    width: 420px;
    background: #ffffff;
    border-radius: 18px;
    padding: 34px;
    border-top: 6px solid #0b6b4f;
}

    .login-card h2 {
        color: #063b2f;
        font-weight: 800;
        margin-bottom: 4px;
    }

    .login-card p {
        color: #6c757d;
        margin-bottom: 24px;
    }
