* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial, sans-serif;
    background: #0f1117;
    color: #e6e6e6;
    min-height: 100vh;
}
header {
    padding: 30px 8%;
    border-bottom: 1px solid #242832;
}
header h1 {
    font-size: 32px;
    margin-bottom: 6px;
}
header p {
    color: #8b929e;
}
main {
    width: 84%;
    max-width: 1200px;
    margin: 35px auto;
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 30px;
}
section {
    background: #171a21;
    border: 1px solid #242832;
    border-radius: 10px;
    padding: 22px;
}
h2 {
    font-size: 19px;
    margin-bottom: 18px;
}
input,
select,
textarea {
    width: 100%;
    background: #0f1117;
    border: 1px solid #303641;
    border-radius: 6px;
    color: #e6e6e6;
    padding: 11px;
    margin-bottom: 12px;
    font-size: 14px;
}
textarea {
    height: 180px;
    resize: vertical;
    font-family: monospace;
}
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #596579;
}
button {
    width: 100%;
    border: none;
    border-radius: 6px;
    padding: 11px;
    background: #e6e6e6;
    color: #111318;
    font-weight: bold;
    cursor: pointer;
}
button:hover {
    background: #ffffff;
}
#searchInput {
    margin-bottom: 20px;
}
.snippet-card {
    background: #0f1117;
    border: 1px solid #303641;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 15px;
}
.snippet-card h3 {
    margin-bottom: 10px;
    font-size: 17px;
}
.snippet-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.language-badge {
    display: inline-block;
    background: #242832;
    border: 1px solid #303641;
    border-radius: 5px;
    padding: 4px 8px;
    color: #e6e6e6;
    font-size: 11px;
    font-weight: bold;
}
.snippet-tags {
    color: #8b929e;
    font-size: 13px;
}
.snippet-card pre {
    background: #171a21;
    border-radius: 6px;
    padding: 14px;
    overflow-x: auto;
    margin-top: 12px;
}
.snippet-card code {
    font-family: Consolas, monospace;
    font-size: 13px;
    white-space: pre-wrap;
}
.snippet-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}
.snippet-actions button {
    width: auto;
    padding: 8px 14px;
}
.delete-button {
    background: #242832;
    color: #e6e6e6;
}
.vault-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.vault-heading h2 {
    margin-bottom: 0;
}
#snippetCount {
    color: #8b929e;
    font-size: 13px;
}
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #8b929e;
    border: 1px dashed #303641;
    border-radius: 8px;
}
.empty-state h3 {
    color: #e6e6e6;
    margin-bottom: 6px;
}
@media (max-width: 800px) {
    main {
        grid-template-columns: 1fr;
    }
}
