/* Neighborhue Shared Styles */

body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    background-color: #f9fafb;
    margin: 0;
    padding: 2rem;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

/* Form Elements */
.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

input[type="text"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
}

button {
    background-color: #3b82f6;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 1rem;
    cursor: pointer;
}

button:hover {
    background-color: #2563eb;
}

/* Copy Button */
.copy-btn {
    background-color: #6b7280;
    color: white;
    border: none;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    cursor: pointer;
    margin-left: 0.5rem;
}

.copy-btn:hover {
    background-color: #4b5563;
}

/* Color Display */
.color-display {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 1rem auto;
    border: 3px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Sections */
.section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.section:last-child {
    border-bottom: none;
}

/* API Endpoints */
.endpoint {
    background-color: #f3f4f6;
    padding: 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
    border-left: 4px solid #3b82f6;
}

.endpoint-label {
    font-weight: bold;
    color: #374151;
    margin-bottom: 0.5rem;
    font-family: ui-sans-serif, system-ui, sans-serif;
}

/* Special States */
.no-color {
    color: #6b7280;
    font-style: italic;
    text-align: center;
    padding: 2rem;
}

.share-url {
    background-color: #fef3c7;
    padding: 1rem;
    border-radius: 0.375rem;
    border-left: 4px solid #f59e0b;
}
