* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f7fa;
    color: #333;
}

nav {
    background: #1e293b;
    padding: 1.2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

nav a {
    color: white;
    margin: 0 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

nav a:hover {
    text-decoration: underline;
}

.container {
    max-width: 600px;
    margin: 60px auto;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

input,
textarea {
    width: 100%;
    padding: 14px;
    margin: 12px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

button {
    padding: 14px 32px;
    margin: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.btn-primary {
    background: #3b82f6;
    color: white;
}

.btn-success {
    background: #10b981;
    color: white;
}

.btn-danger {
    background: #ef4444;
    color: white;
}

.btn-primary:hover {
    background: #2563eb;
}

.status-active {
    color: #10b981;
    font-weight: bold;
    font-size: 1.4rem;
}

.status-inactive {
    color: #ef4444;
    font-weight: bold;
    font-size: 1.4rem;
}

.phrase {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.3rem;
    word-spacing: 10px;
    margin: 20px 0;
}