costco-grocery-list/frontend/src/styles/components/manage/CreateJoinHousehold.css

166 lines
2.7 KiB
CSS

/* Create/Join Household Modal */
.create-join-modal-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.6);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
padding: 1rem;
}
.create-join-modal {
background: var(--card-bg);
border-radius: 12px;
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
max-width: 500px;
width: 100%;
max-height: 90vh;
overflow-y: auto;
}
.modal-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.5rem;
border-bottom: 1px solid var(--border);
}
.modal-header h2 {
font-size: 1.5rem;
font-weight: 600;
color: var(--text-primary);
margin: 0;
}
.close-btn {
background: none;
border: none;
font-size: 2rem;
color: var(--text-secondary);
cursor: pointer;
padding: 0;
width: 2rem;
height: 2rem;
display: flex;
align-items: center;
justify-content: center;
border-radius: 4px;
transition: all 0.2s;
}
.close-btn:hover {
background: var(--card-hover);
color: var(--text-primary);
}
/* Mode Tabs */
.mode-tabs {
display: flex;
border-bottom: 2px solid var(--border);
}
.mode-tab {
flex: 1;
padding: 1rem;
background: none;
border: none;
border-bottom: 3px solid transparent;
color: var(--text-secondary);
font-size: 1rem;
font-weight: 500;
cursor: pointer;
transition: all 0.2s;
}
.mode-tab:hover {
color: var(--text-primary);
background: var(--card-hover);
}
.mode-tab.active {
color: var(--primary);
border-bottom-color: var(--primary);
}
/* Form */
.household-form {
padding: 1.5rem;
}
.form-group {
margin-bottom: 1.5rem;
}
.form-group label {
display: block;
font-weight: 500;
color: var(--text-primary);
margin-bottom: 0.5rem;
}
.form-group input {
width: 100%;
padding: 0.75rem;
border: 1px solid var(--border);
border-radius: 6px;
font-size: 1rem;
background: var(--background);
color: var(--text-primary);
transition: border-color 0.2s;
}
.form-group input:focus {
outline: none;
border-color: var(--primary);
}
.form-hint {
margin-top: 0.5rem;
font-size: 0.85rem;
color: var(--text-secondary);
}
.error-message {
margin: 1rem 1.5rem;
padding: 0.75rem;
background: var(--danger-light, rgba(220, 53, 69, 0.1));
border: 1px solid var(--danger);
border-radius: 6px;
color: var(--danger);
font-size: 0.9rem;
}
.form-actions {
display: flex;
gap: 0.75rem;
justify-content: flex-end;
}
.form-actions button {
min-width: 100px;
}
/* Responsive */
@media (max-width: 600px) {
.create-join-modal {
margin: 0;
border-radius: 0;
max-height: 100vh;
height: 100%;
}
.form-actions {
flex-direction: column-reverse;
}
.form-actions button {
width: 100%;
}
}