@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    background-color: #f8f9fa;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}
.header {
    background-color: #0d6efd;
    color: white;
    padding: 1rem;
}
.footer {
    background-color: #0d6efd;
    color: white;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
}
.code-block {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 1rem;
    margin: 1rem 0;
}
.copy-btn {
    position: absolute;
    right: 1rem;
    top: 0.5rem;
}

.autocomplete-items {
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-control-color {
    padding: 0.375rem;
    height: 38px;
}