/* 福祉事務所空き状況登録フォーム用スタイル */

.form-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.form-header {
    margin-bottom: 2rem;
}

.form-footer {
    text-align: center;
    margin-top: 2rem;
}

/* 信号機スタイル */
.input-with-signal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.signal-indicator {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.signal-light {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 3px;
    background-color: #dee2e6;
}

.signal-light.red {
    background-color: #dc3545;
    box-shadow: 0 0 10px rgba(220, 53, 69, 0.5);
}

.signal-light.yellow {
    background-color: #ffc107;
    box-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
}

.signal-light.green {
    background-color: #28a745;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

.tips-section {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
}

.step-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: #4a89dc;
    color: white;
    border-radius: 50%;
    margin-bottom: 10px;
}
