:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --tag-cloud-base: 1rem;
}

body {
    font-family: 'Segoe UI', system-ui;
    line-height: 1.6;
    margin: 0;
    padding: 1rem;
    background: #f0f4f8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

#tagCloud {
    display: inline-block;
    margin-left: 1rem;
}

#tagCloud span {
    cursor: pointer;
    margin: 0 0.3rem;
    transition: all 0.3s ease;
}

#promptForm {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.tag-input {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

#promptsList {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.prompt-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    #promptsList {
        grid-template-columns: 1fr;
    }
}
