* { box-sizing: border-box; }

body {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  background: #f5f3ef;
  color: #2b2b2b;
  margin: 0;
  direction: rtl;
}

nav {
  background: #7a2e2e;
  color: #fff;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-inline-start: 18px;
  font-size: 15px;
}

nav a:hover { text-decoration: underline; }

.brand { font-weight: bold; font-size: 18px; }

main {
  max-width: 960px;
  margin: 30px auto;
  padding: 0 20px;
}

h1, h2 { color: #7a2e2e; }

.card {
  background: #fff;
  border: 1px solid #e5e0d8;
  border-radius: 8px;
  padding: 18px 22px;
  margin-bottom: 18px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.stat-box {
  background: #fff;
  border: 1px solid #e5e0d8;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
}

.stat-box .value { font-size: 30px; font-weight: bold; color: #7a2e2e; }
.stat-box .label { color: #777; font-size: 14px; margin-top: 6px; }

table { width: 100%; border-collapse: collapse; }
th, td { text-align: right; padding: 8px 10px; border-bottom: 1px solid #eee; }
th { color: #7a2e2e; }

form label { display: block; margin: 10px 0 4px; font-weight: 600; }
input[type=text], input[type=password], input[type=email], textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #d8d2c6;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
}
textarea { min-height: 90px; }

button, .btn {
  background: #7a2e2e;
  color: #fff;
  border: none;
  padding: 9px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 12px;
  display: inline-block;
  text-decoration: none;
}
button.secondary, .btn.secondary { background: #999; }
button.danger, .btn.danger { background: #b23a3a; }

.badge { padding: 3px 9px; border-radius: 12px; font-size: 12px; }
.badge.new { background: #f6dede; color: #a13a3a; }
.badge.resolved { background: #dcefdc; color: #2f7a2f; }

.error { color: #b23a3a; margin-bottom: 10px; }
.success { color: #2f7a2f; margin-bottom: 10px; }
.login-box { max-width: 360px; margin: 90px auto; }
