body {
    margin:0;
    font-family: 'Segoe UI', sans-serif;
    background:#f4f6fb;
}

.navbar {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 40px;
    background:white;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-weight:bold;
    font-size:20px;
    color:#2d6cdf;
}

.nav-links a {
    margin-left:20px;
    text-decoration:none;
    color:#333;
}

.admin-btn {
    background:#2d6cdf;
    color:white;
    padding:6px 12px;
    border-radius:5px;
}

.hero {
    text-align:center;
    padding:60px 20px;
}

.hero h1 {
    font-size:36px;
    margin-bottom:10px;
}

.generator {
    max-width:800px;
    margin:0 auto 60px;
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

textarea {
    width:100%;
    height:120px;
    padding:10px;
    border-radius:8px;
    border:1px solid #ddd;
    resize:none;
}

.settings {
    display:flex;
    gap:10px;
    margin:15px 0;
}

.settings select {
    flex:1;
    padding:8px;
    border-radius:6px;
}

.generate-btn {
    width:100%;
    padding:12px;
    background:#2d6cdf;
    color:white;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
}

.output-tabs {
    margin-top:20px;
    display:flex;
    gap:10px;
}

.tab {
    padding:8px 15px;
    border:none;
    border-radius:6px;
    background:#e5e7eb;
    cursor:pointer;
}

.tab.active {
    background:#2d6cdf;
    color:white;
}

.output-box {
    margin-top:15px;
    padding:15px;
    background:#f9fafb;
    border-radius:8px;
    min-height:120px;
}

footer {
    text-align:center;
    padding:20px;
    background:white;
    box-shadow:0 -2px 10px rgba(0,0,0,0.05);
}
