* {
    box-sizing: border-box;
    font-family: Inter, Arial, sans-serif;
}

body {
    margin: 0;
    background: #f5f7fb;
    color: #1f2937;
}

header {
    background: #ffffff;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.logo img{
  height:32px;
  width:auto;
}

@media(max-width:480px){
  .logo img{ height:22px; }
  .logo span{ font-size:20px; }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 700;
    color: #0f766e;
}

.logo img {
    height: 36px;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
}

.lang a {
    margin-left: 10px;
    font-size: 14px;
}

.container {
    max-width: 1100px;
    margin: 40px auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

h1, h2, h3 {
    margin-top: 0;
}

input, textarea, button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
}

button {
    background: #0f766e;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

button:hover {
    background: #115e59;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th, .table td {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
}

.badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.badge.active {
    background: #dcfce7;
    color: #166534;
}

.badge.blocked {
    background: #fee2e2;
    color: #991b1b;
}
