.sfp-helper-profile {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.profile-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.profile-section h3 {
    margin: 0 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #eee;
    color: #333;
}

.profile-section h4 {
    margin: 1.5rem 0 1rem;
    color: #555;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-item label {
    font-weight: 600;
    color: #666;
}

.shifts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.shift-card {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 1rem;
    border: 1px solid #e9ecef;
}

.shift-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.shift-header h4 {
    margin: 0;
    color: #2196F3;
}

.shift-date {
    font-size: 0.875rem;
    color: #666;
}

.shift-time {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.shift-location {
    font-size: 0.875rem;
    color: #666;
}

.preferences-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.preferences-list li {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
}

.availability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.availability-day {
    background: #f1f8e9;
    padding: 0.75rem;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.day-date {
    font-weight: 600;
}

.day-type {
    font-size: 0.875rem;
    color: #689f38;
    text-transform: capitalize;
}

.notice {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.notice.info {
    background: #e3f2fd;
    border: 1px solid #90caf9;
    color: #1976d2;
}

.notice.error {
    background: #ffebee;
    border: 1px solid #ffcdd2;
    color: #c62828;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .shifts-grid {
        grid-template-columns: 1fr;
    }
    
    .availability-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}
